| 19 Dec 2025 |
dotlambda | If other packages build fine, I think that's proof that qgpgme shouldn't propagate gpgme(pp) | 14:03:48 |
K900 | I guess | 14:06:33 |
| @mtvkxsw9tngk:matrix.org left the room. | 14:17:26 |
dotlambda | Actually, gpgmepp should probably propagate gpgme and libgpg-error as /nix/store/iixl4y6ddcvh73iihfrng1wg8v2r07jp-gpgmepp-2.0.0/lib/cmake/Gpgmepp/GpgmeppConfig.cmake contains
find_dependency(LibGpgError "1.47")
find_dependency(Gpgme "2.0.0")
| 14:59:31 |
dotlambda | And qgpgme should propagate gpgmepp.
fixed in https://github.com/NixOS/nixpkgs/pull/472418
Sorry for messing up! | 15:19:40 |
K900 | Is that enough to get libkleo building? | 15:20:16 |
K900 | (genuine question I am still very migraine) | 15:20:27 |
dotlambda | yes, it will get gpgme and libgpg-error transitively | 15:21:22 |
K900 | OK cool | 15:21:28 |
K900 | Feel free to merge when you're done then | 15:21:38 |
ghpzin | Built my plasma6 config from staging-next with it, seems to work. | 15:38:49 |
dotlambda | 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 |
K900 | Patch it instead? | 16:50:35 |
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 | You could also -Wno-error=template-body, not sure if that would be better or worse. | 17:08:57 |
ghpzin | 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 | 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 |
Grimmauld (any/all) | its somewhat of a hack but i guess that would work | 19:41:25 |
Grimmauld (any/all) | but you should patch | 19:41:32 |
Grimmauld (any/all) | 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 |
dotlambda | Already happened | 19:43:47 |