[flake] fix nng dependency

parent 9c25829c
Pipeline #7536 failed with stages
in 15 minutes and 1 second
...@@ -287,6 +287,14 @@ ...@@ -287,6 +287,14 @@
packages.hmatrix.flags.openblas = true; packages.hmatrix.flags.openblas = true;
# Not really necessary because nix builds in a sandbox by default anyway. # Not really necessary because nix builds in a sandbox by default anyway.
packages.hmatrix.flags.disable-default-paths = true; packages.hmatrix.flags.disable-default-paths = true;
packages.nanomsg-haskell.components.library = {
libs = [
( pkgs.nng.overrideAttrs (old: {
cmakeFlags = (old.cmakeFlags or []) ++ [ "-DNNG_ENABLE_TLS=OFF" ];
}) )
];
};
}) })
]; ];
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment