summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorlassulus <lassulus@lassul.us>2018-10-16 14:51:13 +0200
committerlassulus <lassulus@lassul.us>2018-10-16 14:51:13 +0200
commitb2ba477e713574fa49811c420726542911bf89dc (patch)
tree01de4cf2dc362d0d70bd3801d9faa214332f5ec4 /pkgs/applications
parente31942c71eef88a7188acc36b00c2a916d8774e6 (diff)
downloadnixlib-b2ba477e713574fa49811c420726542911bf89dc.tar
nixlib-b2ba477e713574fa49811c420726542911bf89dc.tar.gz
nixlib-b2ba477e713574fa49811c420726542911bf89dc.tar.bz2
nixlib-b2ba477e713574fa49811c420726542911bf89dc.tar.lz
nixlib-b2ba477e713574fa49811c420726542911bf89dc.tar.xz
nixlib-b2ba477e713574fa49811c420726542911bf89dc.tar.zst
nixlib-b2ba477e713574fa49811c420726542911bf89dc.zip
altcoins.bitcoin-abc: 3.6.7 -> 3.6.10
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/altcoins/bitcoin-abc.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/applications/altcoins/bitcoin-abc.nix b/pkgs/applications/altcoins/bitcoin-abc.nix
index 6d2cbcdf9f9b..3b65b06d8db8 100644
--- a/pkgs/applications/altcoins/bitcoin-abc.nix
+++ b/pkgs/applications/altcoins/bitcoin-abc.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchFromGitHub, pkgconfig, autoreconfHook, openssl, db48, boost
+{ stdenv, fetchFromGitHub, pkgconfig, autoreconfHook, openssl, db53, boost
 , zlib, miniupnpc, qtbase ? null , qttools ? null, utillinux, protobuf, qrencode, libevent
 , withGui }:
 
@@ -7,19 +7,19 @@ with stdenv.lib;
 stdenv.mkDerivation rec {
 
   name = "bitcoin" + (toString (optional (!withGui) "d")) + "-abc-" + version;
-  version = "0.17.1";
+  version = "0.18.2";
 
   src = fetchFromGitHub {
     owner = "bitcoin-ABC";
     repo = "bitcoin-abc";
     rev = "v${version}";
-    sha256 = "1kq9n3s9vhkmfaizsyi2cb91ibi06gb6wx0hkcb9hg3nrrvcka3y";
+    sha256 = "1ha219xnd61qicf7r3j0wbfrifh7blwp3lyk3ycgdn381q1qln29";
   };
 
   patches = [ ./fix-bitcoin-qt-build.patch ];
 
   nativeBuildInputs = [ pkgconfig autoreconfHook ];
-  buildInputs = [ openssl db48 boost zlib
+  buildInputs = [ openssl db53 boost zlib
                   miniupnpc utillinux protobuf libevent ]
                   ++ optionals withGui [ qtbase qttools qrencode ];