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:
Craige McWhirter 2019-09-12 16:03:48 +10:00
parent 2e47cb88ea
commit 2c9bab7ec2
No known key found for this signature in database
GPG Key ID: A4122FF3971B6865

View File

@ -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 ];