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

50 lines
1.6 KiB
Nix
Raw Normal View History

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 librustzcash = callPackage ./librustzcash {};
2017-03-17 09:53:11 +00:00
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;
version = "1.0.13";
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}";
sha256 = "05y7wxs66anxr5akbf05r36mmjfzqpwawn6vyh3jhpva51hzzzyz";
2017-03-17 09:53:11 +00:00
};
# Dependencies are underspecified: "make -C src gtest/zcash_gtest-test_merkletree.o"
# fails with "fatal error: test/data/merkle_roots.json.h: No such file or directory"
enableParallelBuilding = false;
2017-03-17 09:53:11 +00:00
nativeBuildInputs = [ autoreconfHook pkgconfig ];
buildInputs = [ gtest gmock gmp 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 = [ "--with-boost-libdir=${boost.out}/lib"
2017-03-17 09:53:11 +00:00
] ++ optionals withGui [ "--with-gui=qt4" ];
patchPhase = ''
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";
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
};
}