| 19 Dec 2025 |
dotlambda | There's no upstream patch | 16:51:06 |
K900 | I mean it tells you what to change | 16:51:17 |
dotlambda | In the issue they discuss that replacing impl with impl_ causes other problems | 16:52:24 |
K900 | Well the other problem is | 16:53:18 |
K900 | That thing seems to be mostly headers | 16:53:22 |
K900 | So even if you give it a different stdenv anything including it will still explode | 16:53:33 |
dotlambda | true | 16:53:43 |
K900 | Also my C++ is very rusty (hehe) but I think that last comment is correct? | 16:53:47 |
dotlambda | I guess I'll give it a try | 16:54:19 |
@ghpzin:envs.net | You could also -Wno-error=template-body, not sure if that would be better or worse. | 17:08:57 |
@ghpzin:envs.net | You could also -Wno-error=template-body, not sure if that would be better or worse. Kind of surprised no other distro patches/works around it somehow, considering they should have packaged krita | 17:09:52 |
@ghpzin:envs.net | Noticed that all graphical xserver tests seem to be broken on staging-next. wayland is fine, tests for gnome,sway,xfce-wayland, cinnamon-wayland (and plasma6 if you switch test to wayland) pass.
lightdm does not tell much, just that display-manager.service fails:
systemd[1]: display-manager.service: Main process exited, code=exited, status=1/FAILURE
systemd[1]: display-manager.service: Failed with result 'exit-code'.
sddm and ly in tests show errors from xorg-server:
xserver-wrapper[823]: (II) LoadModule: "modesetting"
xserver-wrapper[823]: (II) Loading /nix/store/lrbawv4ccl0x12nwrmbbzpxmzjj1z5r6-xorg-server-21.1.20/lib/xorg/modules/drivers/modesetting_drv.so
xserver-wrapper[823]: (EE) Failed to load /nix/store/lrbawv4ccl0x12nwrmbbzpxmzjj1z5r6-xorg-server-21.1.20/lib/xorg/modules/drivers/modesetting_drv.so: /nix/store/lrbawv4ccl0x12nwrmbbzpxmzjj1z5r6-xorg-server-21.1.20/lib/xorg/modules/drivers/modesetting_drv.so: undefined symbol: gbm_bo_get_plane_count
xserver-wrapper[823]: (EE) Failed to load module "modesetting" (loader failed, 0)
xserver-wrapper[823]: (EE) No drivers available.
Changing this to "--disable-glamor" fixes it: https://github.com/NixOS/nixpkgs/blob/fd720f4fd4e78cce030a72026d1b7cadf6454f29/pkgs/by-name/xo/xorg-server/package.nix#L185 I thought it may be related to 21.1.18 -> 21.1.20 update, similar to: https://github.com/NixOS/nixpkgs/issues/471620 but reverting version to 21.1.18 does not help, neither does updating to 21.1.21 | 19:37:02 |
Grimmauld (any/all) | let stdenv' = if (stdenv.cc.isGNU && lib.versionAtLeast stdenv.cc.version "15") then gcc14Stdenv else stdenv; in stdenv'.mkDerivation { ... } ? | 19:40:29 |