nixpkgs/pkgs/applications/blockchains/zcash/default.nix

60 lines
1.8 KiB
Nix
Raw Normal View History

{ rust, rustPlatform, stdenv, lib, fetchFromGitHub, autoreconfHook, makeWrapper
, cargo, pkg-config
, bash, curl, coreutils, boost17x, db62, libsodium, libevent, utf8cpp, util-linux
}:
2017-03-17 09:53:11 +00:00
rustPlatform.buildRustPackage rec {
2019-11-13 14:40:36 +00:00
pname = "zcash";
version = "4.1.1";
2017-03-17 09:53:11 +00:00
src = fetchFromGitHub {
owner = "zcash";
repo = "zcash";
2017-08-22 04:29:17 +01:00
rev = "v${version}";
sha256 = "185zrw276g545np0niw5hlhlppkjbf5a1r4rwhnbaimdjdii2dil";
2017-03-17 09:53:11 +00:00
};
cargoSha256 = "0qxr6asf8zsya0f1ri39z2cnfpjk96hgwjchz2c7j87vibbvg6dc";
nativeBuildInputs = [ autoreconfHook cargo makeWrapper pkg-config ];
buildInputs = [ bash boost17x db62 libevent libsodium utf8cpp ];
2017-03-17 09:53:11 +00:00
# Use the stdenv default phases (./configure; make) instead of the
# ones from buildRustPackage.
configurePhase = "configurePhase";
buildPhase = "buildPhase";
checkPhase = "checkPhase";
installPhase = "installPhase";
2017-03-17 09:53:11 +00:00
postPatch = ''
# Have to do this here instead of in preConfigure because
# cargoDepsCopy gets unset after postPatch.
configureFlagsArray+=("RUST_VENDORED_SOURCES=$NIX_BUILD_TOP/$cargoDepsCopy")
2017-03-17 09:53:11 +00:00
'';
configureFlags = [
"--disable-tests"
"--with-boost-libdir=${lib.getLib boost17x}/lib"
"CXXFLAGS=-I${lib.getDev utf8cpp}/include/utf8cpp"
"RUST_TARGET=${rust.toRustTargetSpec stdenv.hostPlatform}"
];
enableParallelBuilding = true;
# Requires hundreds of megabytes of zkSNARK parameters.
doCheck = false;
postInstall = ''
wrapProgram $out/bin/zcash-fetch-params \
--set PATH ${lib.makeBinPath [ coreutils curl util-linux ]}
'';
meta = with lib; {
2017-03-17 09:53:11 +00:00
description = "Peer-to-peer, anonymous electronic cash system";
homepage = "https://z.cash/";
2019-11-13 14:40:36 +00:00
maintainers = with maintainers; [ rht tkerber ];
2017-03-17 09:53:11 +00:00
license = licenses.mit;
2017-11-24 11:23:01 +00:00
platforms = platforms.linux;
2017-03-17 09:53:11 +00:00
};
}