mirror of
https://github.com/CHN-beta/nixpkgs.git
synced 2026-01-11 18:32:23 +08:00
They are not doing anything right now. This is in preparation for their complete removal from the tree. Note: several changes that affect the derivation inputs (e.g. removal of references to stub paths in build instructions) were left out. They will be cleaned up the next iteration and will require special care. Note: this PR is a result of a mix of ugly regex (not AST) based automation and some manual labor. For reference, the regex automation part was hacked in: https://github.com/booxter/nix-clean-apple_sdk Signed-off-by: Ihar Hrachyshka <ihar.hrachyshka@gmail.com>
127 lines
2.6 KiB
Nix
127 lines
2.6 KiB
Nix
{
|
|
autoreconfHook,
|
|
boost,
|
|
cargo,
|
|
coreutils,
|
|
curl,
|
|
cxx-rs,
|
|
db62,
|
|
fetchFromGitHub,
|
|
gitMinimal,
|
|
hexdump,
|
|
lib,
|
|
libevent,
|
|
libsodium,
|
|
makeWrapper,
|
|
rustPlatform,
|
|
pkg-config,
|
|
stdenv,
|
|
testers,
|
|
tl-expected,
|
|
utf8cpp,
|
|
util-linux,
|
|
zcash,
|
|
zeromq,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage.override { inherit stdenv; } rec {
|
|
pname = "zcash";
|
|
version = "5.4.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "zcash";
|
|
repo = "zcash";
|
|
rev = "v${version}";
|
|
hash = "sha256-XGq/cYUo43FcpmRDO2YiNLCuEQLsTFLBFC4M1wM29l8=";
|
|
};
|
|
|
|
prePatch = lib.optionalString stdenv.hostPlatform.isAarch64 ''
|
|
substituteInPlace .cargo/config.offline \
|
|
--replace "[target.aarch64-unknown-linux-gnu]" "" \
|
|
--replace "linker = \"aarch64-linux-gnu-gcc\"" ""
|
|
'';
|
|
|
|
useFetchCargoVendor = true;
|
|
cargoHash = "sha256-VBqasLpxqI4kr73Mr7OVuwb2OIhUwnY9CTyZZOyEElU=";
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
cargo
|
|
cxx-rs
|
|
gitMinimal
|
|
hexdump
|
|
makeWrapper
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = [
|
|
boost
|
|
db62
|
|
libevent
|
|
libsodium
|
|
tl-expected
|
|
utf8cpp
|
|
zeromq
|
|
];
|
|
|
|
# Use the stdenv default phases (./configure; make) instead of the
|
|
# ones from buildRustPackage.
|
|
configurePhase = "configurePhase";
|
|
dontCargoBuild = true;
|
|
dontCargoCheck = true;
|
|
dontCargoInstall = true;
|
|
|
|
postPatch = ''
|
|
# Have to do this here instead of in preConfigure because
|
|
# cargoDepsCopy gets unset after postPatch.
|
|
configureFlagsArray+=("RUST_VENDORED_SOURCES=$cargoDepsCopy")
|
|
'';
|
|
|
|
CXXFLAGS = [
|
|
"-I${lib.getDev utf8cpp}/include/utf8cpp"
|
|
"-I${lib.getDev cxx-rs}/include"
|
|
];
|
|
|
|
configureFlags = [
|
|
"--disable-tests"
|
|
"--with-boost-libdir=${lib.getLib boost}/lib"
|
|
"RUST_TARGET=${stdenv.hostPlatform.rust.rustcTargetSpec}"
|
|
];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
# Requires hundreds of megabytes of zkSNARK parameters.
|
|
doCheck = false;
|
|
|
|
passthru.tests.version = testers.testVersion {
|
|
package = zcash;
|
|
command = "zcashd --version";
|
|
version = "v${zcash.version}";
|
|
};
|
|
|
|
postInstall = ''
|
|
wrapProgram $out/bin/zcash-fetch-params \
|
|
--set PATH ${
|
|
lib.makeBinPath [
|
|
coreutils
|
|
curl
|
|
util-linux
|
|
]
|
|
}
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Peer-to-peer, anonymous electronic cash system";
|
|
homepage = "https://z.cash/";
|
|
maintainers = with maintainers; [
|
|
rht
|
|
tkerber
|
|
centromere
|
|
];
|
|
license = licenses.mit;
|
|
|
|
# https://github.com/zcash/zcash/issues/4405
|
|
broken = stdenv.hostPlatform.isAarch64 && stdenv.hostPlatform.isDarwin;
|
|
};
|
|
}
|