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

66 lines
2.2 KiB
Nix
Raw Normal View History

{ rust, rustPlatform, stdenv, lib, fetchFromGitHub, autoreconfHook, makeWrapper
, cargo, pkg-config, curl, coreutils, boost174, db62, hexdump, libsodium
, libevent, utf8cpp, util-linux, withDaemon ? true, withMining ? true
, withUtils ? true, withWallet ? true, withZmq ? true, zeromq
}:
2017-03-17 09:53:11 +00:00
rustPlatform.buildRustPackage.override { stdenv = stdenv; } rec {
2019-11-13 14:40:36 +00:00
pname = "zcash";
version = "4.4.0";
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 = "19vhblyqkaf1lapx8s4v88xjpslqmrd1jnar46rschzcz0mm9sq4";
2017-03-17 09:53:11 +00:00
};
cargoSha256 = "1yiy1506ijndxb9bx79p7fkfvw1c5zdsljil4m55xz1mv8dzhbgm";
nativeBuildInputs = [ autoreconfHook cargo hexdump makeWrapper pkg-config ];
buildInputs = [ boost174 libevent libsodium utf8cpp ]
++ lib.optional withWallet db62
++ lib.optional withZmq zeromq;
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 boost174}/lib"
"CXXFLAGS=-I${lib.getDev utf8cpp}/include/utf8cpp"
"RUST_TARGET=${rust.toRustTargetSpec stdenv.hostPlatform}"
] ++ lib.optional (!withWallet) "--disable-wallet"
++ lib.optional (!withDaemon) "--without-daemon"
++ lib.optional (!withUtils) "--without-utils"
++ lib.optional (!withMining) "--disable-mining";
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
};
}