zcash: Add libsnark to stop build failures
Wanted for #68361 zcash build fails due to missing `profiling.hpp` which is provided by `libsnark`.
This commit is contained in:
parent
2e47cb88ea
commit
2c9bab7ec2
@ -1,6 +1,6 @@
|
|||||||
{ stdenv, libsodium, fetchFromGitHub, wget, pkgconfig, autoreconfHook, openssl, db62, boost
|
{ stdenv, libsodium, fetchFromGitHub, wget, pkgconfig, autoreconfHook, openssl, db62, boost
|
||||||
, zlib, gtest, gmock, callPackage, gmp, qt4, utillinux, protobuf, qrencode, libevent
|
, zlib, gtest, gmock, callPackage, gmp, qt4, utillinux, protobuf, qrencode, libevent
|
||||||
, withGui }:
|
, libsnark, withGui }:
|
||||||
|
|
||||||
let librustzcash = callPackage ./librustzcash {};
|
let librustzcash = callPackage ./librustzcash {};
|
||||||
in
|
in
|
||||||
@ -23,7 +23,7 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
||||||
buildInputs = [ gtest gmock gmp openssl wget db62 boost zlib
|
buildInputs = [ gtest gmock gmp openssl wget db62 boost zlib
|
||||||
protobuf libevent libsodium librustzcash ]
|
protobuf libevent libsodium librustzcash libsnark ]
|
||||||
++ optionals stdenv.isLinux [ utillinux ]
|
++ optionals stdenv.isLinux [ utillinux ]
|
||||||
++ optionals withGui [ qt4 qrencode ];
|
++ optionals withGui [ qt4 qrencode ];
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user