Staging | 323 Members | |
| Staging merges | Running staging cycles: https://github.com/NixOS/nixpkgs/pulls?q=is%3Apr+is%3Aopen+head%3Astaging-next+head%3Astaging-next-25.05 | Review Reports: https://malob.github.io/nix-review-tools-reports/ | 110 Servers |
| Sender | Message | Time |
|---|---|---|
| 19 Dec 2025 | ||
| (genuine question I am still very migraine) | 15:20:27 | |
| yes, it will get gpgme and libgpg-error transitively | 15:21:22 | |
| OK cool | 15:21:28 | |
| Feel free to merge when you're done then | 15:21:38 | |
Built my plasma6 config from staging-next with it, seems to work. | 15:38:49 | |
| How do I make zug use gcc 14, but only if the stdenv uses gcc anyway? https://github.com/arximboldi/zug/issues/45 | 16:49:53 | |
| Patch it instead? | 16:50:35 | |
| There's no upstream patch | 16:51:06 | |
| I mean it tells you what to change | 16:51:17 | |
In the issue they discuss that replacing impl with impl_ causes other problems | 16:52:24 | |
| Well the other problem is | 16:53:18 | |
| That thing seems to be mostly headers | 16:53:22 | |
| So even if you give it a different stdenv anything including it will still explode | 16:53:33 | |
| true | 16:53:43 | |
| Also my C++ is very rusty (hehe) but I think that last comment is correct? | 16:53:47 | |
| I guess I'll give it a try | 16:54:19 | |
You could also -Wno-error=template-body, not sure if that would be better or worse. | 17:08:57 | |
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 | |
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:sddm and ly in tests show errors from xorg-server: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 | |
let stdenv' = if (stdenv.cc.isGNU && lib.versionAtLeast stdenv.cc.version "15") then gcc14Stdenv else stdenv; in stdenv'.mkDerivation { ... } ? | 19:40:29 | |
| its somewhat of a hack but i guess that would work | 19:41:25 | |
| but you should patch | 19:41:32 | |
| also hello, i submitted my thesis, i can do nix things again. But C++ requires more spoons than i have currently. I've spent way too long wrangling boost and hdf5 and gmsh and occt and shit this last week, i would prefer some actual good low C things for a change. | 19:42:53 | |
| Already happened | 19:43:47 | |
| https://github.com/NixOS/nixpkgs/pull/472457 | 19:44:39 | |
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:sddm and ly in tests show errors from xorg-server: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.21There were a few xorg refactors merged to staging, maybe one of them did something unintentional. | 19:52:10 | |
| Can you check if modesetting_drv links libgbm correctly | 20:15:25 | |
| gbmbogetplanecount should be exported by libgbm | 20:15:47 | |
| It doesn't link directly right, something else there should link to that ? Unless I misunderstand what you mean, ie on both staging-next and master it does not link to libgbm:The only thing in both cases that does is /lib/xorg/modules/libglamoregl.so: | 20:34:48 | |
| Hm | 20:36:34 | |