zcash: Add libsnark to stop build failures

Wanted for #68361

zcash build fails due to missing `profiling.hpp` which is provided by
`libsnark`.
wip/yesman
Craige McWhirter 5 years ago
parent 2e47cb88ea
commit 2c9bab7ec2
No known key found for this signature in database
GPG Key ID: A4122FF3971B6865
  1. 4
      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 ];

Loading…
Cancel
Save