We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1cf8dda commit 9d36c00Copy full SHA for 9d36c00
nix/haskell.nix
@@ -152,11 +152,14 @@ let
152
})
153
({ pkgs, ... }: {
154
# Use the VRF fork of libsodium when building cardano-node
155
- packages =
156
- lib.genAttrs [ "cardano-crypto-praos" "cardano-crypto-class" ] (_: {
157
- components.library.pkgconfig =
158
- lib.mkForce [ [ pkgs.libsodium-vrf ] ];
159
- });
+ packages = {
+ cardano-crypto-praos.components.library.pkgconfig = lib.mkForce [
+ [ pkgs.libsodium-vrf ]
+ ];
+ cardano-crypto-class.components.library.pkgconfig = lib.mkForce [
160
+ [ pkgs.libsodium-vrf pkgs.secp256k1 ]
161
162
+ };
163
164
];
165
};
0 commit comments