summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorAlex Wied <centromere@users.noreply.github.com>2022-04-13 19:04:36 -0400
committerAlex Wied <centromere@users.noreply.github.com>2022-04-13 19:04:36 -0400
commit5874035621255e74773284e679b6da8f0501cd84 (patch)
treee38114985556dd71509f93ae6f402c1ce4262c26 /pkgs/applications
parent8b1e1d698c8e037be270ce30b7711c87763957d9 (diff)
downloadnixpkgs-5874035621255e74773284e679b6da8f0501cd84.tar
nixpkgs-5874035621255e74773284e679b6da8f0501cd84.tar.gz
nixpkgs-5874035621255e74773284e679b6da8f0501cd84.tar.bz2
nixpkgs-5874035621255e74773284e679b6da8f0501cd84.tar.lz
nixpkgs-5874035621255e74773284e679b6da8f0501cd84.tar.xz
nixpkgs-5874035621255e74773284e679b6da8f0501cd84.tar.zst
nixpkgs-5874035621255e74773284e679b6da8f0501cd84.zip
zcash: 4.6.0-1 -> 4.6.0-2
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/blockchains/zcash/default.nix12
1 files changed, 6 insertions, 6 deletions
diff --git a/pkgs/applications/blockchains/zcash/default.nix b/pkgs/applications/blockchains/zcash/default.nix
index 8dc15e7c9d8..5e9f4200141 100644
--- a/pkgs/applications/blockchains/zcash/default.nix
+++ b/pkgs/applications/blockchains/zcash/default.nix
@@ -1,24 +1,24 @@
 { rust, rustPlatform, stdenv, lib, fetchFromGitHub, autoreconfHook, makeWrapper
-, cargo, pkg-config, curl, coreutils, boost175, db62, hexdump, libsodium
+, cargo, pkg-config, curl, coreutils, boost177, db62, hexdump, libsodium
 , libevent, utf8cpp, util-linux, withDaemon ? true, withMining ? true
 , withUtils ? true, withWallet ? true, withZmq ? true, zeromq
 }:
 
 rustPlatform.buildRustPackage.override { stdenv = stdenv; } rec {
   pname = "zcash";
-  version = "4.6.0-1";
+  version = "4.6.0-2";
 
   src = fetchFromGitHub {
     owner = "zcash";
     repo  = "zcash";
     rev = "v${version}";
-    sha256 = "sha256-YJ5ufo+LYbOTr9SyiEzzp1pcSx6+cHSvDLBOIcx9X+4=";
+    sha256 = "sha256-RvUa8CKPBFfsqzrJkPHePZMqpCfyVafrUbftMdTviHA=";
   };
 
-  cargoSha256 = "sha256-m/SBHv3BNYKkSXxHnCdVng3blbHrTc/HxX/nEIa1DnM=";
+  cargoSha256 = "sha256-qWimataBZ/rLDOLgetNfFAzi/psXcJV54b3WGm9k+b4=";
 
   nativeBuildInputs = [ autoreconfHook cargo hexdump makeWrapper pkg-config ];
-  buildInputs = [ boost175 libevent libsodium utf8cpp ]
+  buildInputs = [ boost177 libevent libsodium utf8cpp ]
     ++ lib.optional withWallet db62
     ++ lib.optional withZmq zeromq;
 
@@ -37,7 +37,7 @@ rustPlatform.buildRustPackage.override { stdenv = stdenv; } rec {
 
   configureFlags = [
     "--disable-tests"
-    "--with-boost-libdir=${lib.getLib boost175}/lib"
+    "--with-boost-libdir=${lib.getLib boost177}/lib"
     "CXXFLAGS=-I${lib.getDev utf8cpp}/include/utf8cpp"
     "RUST_TARGET=${rust.toRustTargetSpec stdenv.hostPlatform}"
   ] ++ lib.optional (!withWallet) "--disable-wallet"