summary refs log tree commit diff
path: root/pkgs/applications/blockchains
diff options
context:
space:
mode:
authorlassulus <lassulus@lassul.us>2019-12-02 23:22:03 +0100
committerLassulus <github@lassul.us>2019-12-03 20:59:28 +0100
commitd3f928282c0989232e425d26f0302120a8c7218b (patch)
tree15196b34a1591449b49d69b723c6ae0275d1b633 /pkgs/applications/blockchains
parent4d3920996105278ffa6c2a88e78afb6243bef719 (diff)
downloadnixpkgs-d3f928282c0989232e425d26f0302120a8c7218b.tar
nixpkgs-d3f928282c0989232e425d26f0302120a8c7218b.tar.gz
nixpkgs-d3f928282c0989232e425d26f0302120a8c7218b.tar.bz2
nixpkgs-d3f928282c0989232e425d26f0302120a8c7218b.tar.lz
nixpkgs-d3f928282c0989232e425d26f0302120a8c7218b.tar.xz
nixpkgs-d3f928282c0989232e425d26f0302120a8c7218b.tar.zst
nixpkgs-d3f928282c0989232e425d26f0302120a8c7218b.zip
bitcoin-abc: 0.20.6 -> 0.20.7
Diffstat (limited to 'pkgs/applications/blockchains')
-rw-r--r--pkgs/applications/blockchains/bitcoin-abc.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/applications/blockchains/bitcoin-abc.nix b/pkgs/applications/blockchains/bitcoin-abc.nix
index 95dab9f18b9..b03acfbf78a 100644
--- a/pkgs/applications/blockchains/bitcoin-abc.nix
+++ b/pkgs/applications/blockchains/bitcoin-abc.nix
@@ -1,19 +1,19 @@
-{ stdenv, fetchFromGitHub, pkgconfig, autoreconfHook, openssl, db53, boost
+{ stdenv, mkDerivation, fetchFromGitHub, pkgconfig, autoreconfHook, openssl, db53, boost
 , zlib, miniupnpc, qtbase ? null , qttools ? null, utillinux, protobuf, qrencode, libevent
 , withGui }:
 
 with stdenv.lib;
 
-stdenv.mkDerivation rec {
+mkDerivation rec {
 
   name = "bitcoin" + (toString (optional (!withGui) "d")) + "-abc-" + version;
-  version = "0.20.6";
+  version = "0.20.7";
 
   src = fetchFromGitHub {
     owner = "bitcoin-ABC";
     repo = "bitcoin-abc";
     rev = "v${version}";
-    sha256 = "1a65pykdjkiic67fcs8cg2qrvzzrqifa93r1bzza3gdyfdvgv3ww";
+    sha256 = "1d17ry9906zmwj2n3mh77b6rqmdg0dgm7b7ybh8d7q2ml0196ilj";
   };
 
   patches = [ ./fix-bitcoin-qt-build.patch ];