lol

Merge pull request #139652 from centromere/zcash-4.5.0

zcash: 4.4.1 -> 4.5.0

authored by

Bobby Rong and committed by
GitHub
bb87e609 bdbded8c

+6 -6
+6 -6
pkgs/applications/blockchains/zcash/default.nix
··· 1 1 { rust, rustPlatform, stdenv, lib, fetchFromGitHub, autoreconfHook, makeWrapper 2 - , cargo, pkg-config, curl, coreutils, boost174, db62, hexdump, libsodium 2 + , cargo, pkg-config, curl, coreutils, boost175, db62, hexdump, libsodium 3 3 , libevent, utf8cpp, util-linux, withDaemon ? true, withMining ? true 4 4 , withUtils ? true, withWallet ? true, withZmq ? true, zeromq 5 5 }: 6 6 7 7 rustPlatform.buildRustPackage.override { stdenv = stdenv; } rec { 8 8 pname = "zcash"; 9 - version = "4.4.1"; 9 + version = "4.5.0"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "zcash"; 13 13 repo = "zcash"; 14 14 rev = "v${version}"; 15 - sha256 = "0nhrjizx518khrl8aygag6a1ianzzqpchasggi963f807kv7ipb7"; 15 + sha256 = "0zn6ms2c4mh64cckjg88v0byy2ck116z5g4y82hh34mz3r11d9mn"; 16 16 }; 17 17 18 - cargoSha256 = "101j8cn2lg3l1gn53yg3svzwx783z331g9kzn9ici4azindyx903"; 18 + cargoSha256 = "16il7napj7ryxsap6icvdpvagm9mvgz2mpshny9wn56y60qaymd0"; 19 19 20 20 nativeBuildInputs = [ autoreconfHook cargo hexdump makeWrapper pkg-config ]; 21 - buildInputs = [ boost174 libevent libsodium utf8cpp ] 21 + buildInputs = [ boost175 libevent libsodium utf8cpp ] 22 22 ++ lib.optional withWallet db62 23 23 ++ lib.optional withZmq zeromq; 24 24 ··· 37 37 38 38 configureFlags = [ 39 39 "--disable-tests" 40 - "--with-boost-libdir=${lib.getLib boost174}/lib" 40 + "--with-boost-libdir=${lib.getLib boost175}/lib" 41 41 "CXXFLAGS=-I${lib.getDev utf8cpp}/include/utf8cpp" 42 42 "RUST_TARGET=${rust.toRustTargetSpec stdenv.hostPlatform}" 43 43 ] ++ lib.optional (!withWallet) "--disable-wallet"