zcash: 2.1.0-1 -> 2.1.1-1
Also enabled parallel building, because otherwise this takes 45+ minutes to compile! With it enabled, it can build in a couple minutes.
This commit is contained in:
parent
176d90e0c8
commit
bd1b24b5b1
@ -7,15 +7,19 @@ with stdenv.lib;
|
|||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
|
|
||||||
pname = "zcash";
|
pname = "zcash";
|
||||||
version = "2.1.0-1";
|
version = "2.1.1-1";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "zcash";
|
owner = "zcash";
|
||||||
repo = "zcash";
|
repo = "zcash";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "05bnn4lxrrcv1ha3jdfrgwg4ar576161n3j9d4gpc14ww3zgf9vz";
|
sha256 = "1g5zlfzfp31my8w8nlg5fncpr2y95iv9fm04x57sjb93rgmjdh5n";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
patchPhase = ''
|
||||||
|
sed -i"" 's,-fvisibility=hidden,,g' src/Makefile.am
|
||||||
|
'';
|
||||||
|
|
||||||
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
||||||
buildInputs = [ gtest gmock gmp openssl wget db62 boost17x zlib
|
buildInputs = [ gtest gmock gmp openssl wget db62 boost17x zlib
|
||||||
protobuf libevent libsodium librustzcash ]
|
protobuf libevent libsodium librustzcash ]
|
||||||
@ -23,17 +27,15 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
configureFlags = [ "--with-boost-libdir=${boost17x.out}/lib" ];
|
configureFlags = [ "--with-boost-libdir=${boost17x.out}/lib" ];
|
||||||
|
|
||||||
patchPhase = ''
|
|
||||||
sed -i"" 's,-fvisibility=hidden,,g' src/Makefile.am
|
|
||||||
'';
|
|
||||||
|
|
||||||
postInstall = ''
|
postInstall = ''
|
||||||
cp zcutil/fetch-params.sh $out/bin/zcash-fetch-params
|
cp zcutil/fetch-params.sh $out/bin/zcash-fetch-params
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "Peer-to-peer, anonymous electronic cash system";
|
description = "Peer-to-peer, anonymous electronic cash system";
|
||||||
homepage = https://z.cash/;
|
homepage = "https://z.cash/";
|
||||||
maintainers = with maintainers; [ rht tkerber ];
|
maintainers = with maintainers; [ rht tkerber ];
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user