fda26c8476
* master: (271 commits) pysmbc: clarify license pysmbc: fix license bazel: 0.5.4 -> 0.6.0 (#29990) googler: init at 3.3 go: declare support for aarch64 firefox-beta-bin: 56.0b5 -> 57.0b4 spotify: 1.0.64.401.g9d720389-21 -> 1.0.64.407.g9bd02c2d-26 gogs: 0.11.19 -> 0.11.29 grafana: 4.5.1 -> 4.5.2 mopidy-iris: 3.4.1 -> 3.4.9 nextcloud: 12.0.2 -> 12.0.3 haskell-json-autotype: jailbreak to fix build within LTS 9.x kore: fix up kore: init at 2.0.0 glusterfs service: fix issues with useRpcbind tig: 2.2.2 -> 2.3.0 haskell-hspec-core: enable test suite again hackage-packages.nix: automatic Haskell package set update librsvg: fix thumbnailer path awscli: 1.11.108 -> 1.11.162 ...
50 lines
1.6 KiB
Nix
50 lines
1.6 KiB
Nix
{ stdenv, libsodium, fetchFromGitHub, wget, pkgconfig, autoreconfHook, openssl, db62, boost
|
|
, zlib, gtest, gmock, callPackage, gmp, qt4, utillinux, protobuf, qrencode, libevent
|
|
, withGui }:
|
|
|
|
let libsnark = callPackage ./libsnark { inherit boost openssl; };
|
|
librustzcash = callPackage ./librustzcash {};
|
|
in
|
|
with stdenv.lib;
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "zcash" + (toString (optional (!withGui) "d")) + "-" + version;
|
|
version = "1.0.12";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "zcash";
|
|
repo = "zcash";
|
|
rev = "v${version}";
|
|
sha256 = "19bxhdnkvgncgl9x6nbaf5nwgrdfw99icvdbi9adfh646pd5z64s";
|
|
};
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
|
buildInputs = [ gtest gmock gmp libsnark openssl wget db62 boost zlib
|
|
protobuf libevent libsodium librustzcash ]
|
|
++ optionals stdenv.isLinux [ utillinux ]
|
|
++ optionals withGui [ qt4 qrencode ];
|
|
|
|
configureFlags = [ "LIBSNARK_INCDIR=${libsnark}/include/libsnark"
|
|
"--with-boost-libdir=${boost.out}/lib"
|
|
] ++ optionals withGui [ "--with-gui=qt4" ];
|
|
|
|
patchPhase = ''
|
|
sed -i"" '/^\[LIBSNARK_INCDIR/d' configure.ac
|
|
sed -i"" 's,-lboost_system-mt,-lboost_system,' configure.ac
|
|
sed -i"" 's,-fvisibility=hidden,,g' src/Makefile.am
|
|
'';
|
|
|
|
postInstall = ''
|
|
cp zcutil/fetch-params.sh $out/bin/zcash-fetch-params
|
|
'';
|
|
|
|
meta = {
|
|
description = "Peer-to-peer, anonymous electronic cash system";
|
|
homepage = https://z.cash/;
|
|
maintainers = with maintainers; [ rht ];
|
|
license = licenses.mit;
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|