3
0
Fork 0
forked from mirrors/nixpkgs

secp256k1-haskell: unbreak via override

This library simply needs libsecp256k1 in its pkgconfig-depends.
This commit is contained in:
Jared Tobin 2020-03-14 17:41:34 +09:00 committed by Peter Simons
parent 0b08c636f2
commit 899629ba48
2 changed files with 3 additions and 1 deletions

View file

@ -9072,7 +9072,6 @@ broken-packages:
- seclib
- second-transfer
- secp256k1
- secp256k1-haskell
- secp256k1-legacy
- secret-santa
- secret-sharing

View file

@ -498,6 +498,9 @@ self: super: builtins.intersectAttrs super {
# requires autotools to build
secp256k1 = addBuildTools super.secp256k1 [ pkgs.buildPackages.autoconf pkgs.buildPackages.automake pkgs.buildPackages.libtool ];
# requires libsecp256k1 in pkgconfig-depends
secp256k1-haskell = addPkgconfigDepend super.secp256k1-haskell pkgs.secp256k1;
# tests require git and zsh
hapistrano = addBuildTools super.hapistrano [ pkgs.buildPackages.git pkgs.buildPackages.zsh ];