2017-03-17 09:53:11 +00:00
|
|
|
{ stdenv, libsodium, fetchFromGitHub, wget, pkgconfig, autoreconfHook, openssl, db62, boost
|
2017-08-22 03:29:17 +00:00
|
|
|
, zlib, gtest, gmock, callPackage, gmp, qt4, utillinux, protobuf, qrencode, libevent
|
2017-03-17 09:53:11 +00:00
|
|
|
, withGui }:
|
|
|
|
|
|
|
|
let libsnark = callPackage ./libsnark { inherit boost openssl; };
|
|
|
|
librustzcash = callPackage ./librustzcash {};
|
|
|
|
in
|
|
|
|
with stdenv.lib;
|
2017-08-22 03:29:17 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2017-03-17 09:53:11 +00:00
|
|
|
|
|
|
|
name = "zcash" + (toString (optional (!withGui) "d")) + "-" + version;
|
2017-09-29 14:09:57 +00:00
|
|
|
version = "1.0.12";
|
2017-03-17 09:53:11 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "zcash";
|
|
|
|
repo = "zcash";
|
2017-08-22 03:29:17 +00:00
|
|
|
rev = "v${version}";
|
2017-09-29 14:09:57 +00:00
|
|
|
sha256 = "19bxhdnkvgncgl9x6nbaf5nwgrdfw99icvdbi9adfh646pd5z64s";
|
2017-03-17 09:53:11 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2017-09-05 21:26:13 +00:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
|
|
|
buildInputs = [ gtest gmock gmp libsnark openssl wget db62 boost zlib
|
2017-08-22 03:29:17 +00:00
|
|
|
protobuf libevent libsodium librustzcash ]
|
2017-03-17 09:53:11 +00:00
|
|
|
++ 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";
|
2017-08-01 20:03:30 +00:00
|
|
|
homepage = https://z.cash/;
|
2017-03-17 09:53:11 +00:00
|
|
|
maintainers = with maintainers; [ rht ];
|
|
|
|
license = licenses.mit;
|
2017-11-24 11:23:01 +00:00
|
|
|
platforms = platforms.linux;
|
2017-03-17 09:53:11 +00:00
|
|
|
};
|
|
|
|
}
|