summary refs log tree commit diff
path: root/pkgs/applications/blockchains/bitcoin-abc/default.nix
diff options
context:
space:
mode:
authorwitheredsea7df <witheredsea7df@proton.me>2022-10-08 15:34:45 -0400
committerwitheredsea7df <witheredsea7df@proton.me>2022-10-08 15:34:45 -0400
commitb206c7d019517276f22761b515509382d139499b (patch)
tree4dd63350ff1ecabfe51196045ad666bf16b18a10 /pkgs/applications/blockchains/bitcoin-abc/default.nix
parentd967f5daf51d22cb5581d6a1f861b1dbc72228d4 (diff)
downloadnixpkgs-b206c7d019517276f22761b515509382d139499b.tar
nixpkgs-b206c7d019517276f22761b515509382d139499b.tar.gz
nixpkgs-b206c7d019517276f22761b515509382d139499b.tar.bz2
nixpkgs-b206c7d019517276f22761b515509382d139499b.tar.lz
nixpkgs-b206c7d019517276f22761b515509382d139499b.tar.xz
nixpkgs-b206c7d019517276f22761b515509382d139499b.tar.zst
nixpkgs-b206c7d019517276f22761b515509382d139499b.zip
bitcoin-abc: 0.21.13 -> 0.26.2
Diffstat (limited to 'pkgs/applications/blockchains/bitcoin-abc/default.nix')
-rw-r--r--pkgs/applications/blockchains/bitcoin-abc/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/applications/blockchains/bitcoin-abc/default.nix b/pkgs/applications/blockchains/bitcoin-abc/default.nix
index 6f1734bbc13..c1ede1ea839 100644
--- a/pkgs/applications/blockchains/bitcoin-abc/default.nix
+++ b/pkgs/applications/blockchains/bitcoin-abc/default.nix
@@ -15,6 +15,7 @@
 , protobuf
 , qrencode
 , libevent
+, sqlite
 , withGui
 , python3
 , jemalloc
@@ -23,17 +24,15 @@
 
 mkDerivation rec {
   pname = "bitcoin" + lib.optionalString (!withGui) "d" + "-abc";
-  version = "0.21.13";
+  version = "0.26.2";
 
   src = fetchFromGitHub {
     owner = "bitcoin-ABC";
     repo = "bitcoin-abc";
     rev = "v${version}";
-    sha256 = "1x8xcdi1vcskggk9bqkwr3ah4vi9b7sj2h8hf7spac6dvz8lmzav";
+    sha256 = "0gz4713lk3alk3ykwq1bdqjywadrfrnb7n2878136g01n87j00az";
   };
 
-  patches = [ ./fix-bitcoin-qt-build.patch ];
-
   nativeBuildInputs = [ pkg-config cmake ];
   buildInputs = [
     openssl
@@ -47,6 +46,7 @@ mkDerivation rec {
     util-linux
     protobuf
     libevent
+    sqlite
   ] ++ lib.optionals withGui [ qtbase qttools qrencode ];
 
   cmakeFlags = lib.optionals (!withGui) [