summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/blockchains/zcash
diff options
context:
space:
mode:
authorCraige McWhirter <craige@mcwhirter.io>2019-09-12 16:03:48 +1000
committerCraige McWhirter <craige@mcwhirter.io>2019-09-12 16:03:48 +1000
commit2c9bab7ec225b6fa4b18c1248beb224eaec4ad46 (patch)
tree9fc1043dc8581e6a490ccdf11b0c046dc736b3e0 /pkgs/applications/blockchains/zcash
parent2e47cb88ea081af47df986f17df341ac0265a8a4 (diff)
zcash: Add libsnark to stop build failures
Wanted for #68361 zcash build fails due to missing `profiling.hpp` which is provided by `libsnark`.
Diffstat (limited to 'pkgs/applications/blockchains/zcash')
-rw-r--r--pkgs/applications/blockchains/zcash/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/blockchains/zcash/default.nix b/pkgs/applications/blockchains/zcash/default.nix
index 6a8fba3c2bb7..1852d72d326f 100644
--- a/pkgs/applications/blockchains/zcash/default.nix
+++ b/pkgs/applications/blockchains/zcash/default.nix
@@ -1,6 +1,6 @@
{ stdenv, libsodium, fetchFromGitHub, wget, pkgconfig, autoreconfHook, openssl, db62, boost
, zlib, gtest, gmock, callPackage, gmp, qt4, utillinux, protobuf, qrencode, libevent
-, withGui }:
+, libsnark, withGui }:
let librustzcash = callPackage ./librustzcash {};
in
@@ -23,7 +23,7 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ autoreconfHook pkgconfig ];
buildInputs = [ gtest gmock gmp openssl wget db62 boost zlib
- protobuf libevent libsodium librustzcash ]
+ protobuf libevent libsodium librustzcash libsnark ]
++ optionals stdenv.isLinux [ utillinux ]
++ optionals withGui [ qt4 qrencode ];