Merge pull request #289732 from trofi/btcdeb-update

btcdeb: unstable-2022-04-03 -> 0.3.20-unstable-2024-02-06

authored by Mario Rodas and committed by GitHub fd8da35a 00c20853

+8 -3
+8 -3
pkgs/applications/blockchains/btcdeb/default.nix
··· 3 , autoreconfHook 4 , pkg-config 5 , openssl 6 }: 7 8 stdenv.mkDerivation rec { 9 pname = "btcdeb"; 10 - version = "unstable-2022-04-03"; 11 12 src = fetchFromGitHub { 13 owner = "bitcoin-core"; 14 repo = "btcdeb"; 15 - rev = "3ba1ec7f4d37f7d2ff0544403465004c6e12036e"; 16 - hash = "sha256-l/PGXXX288mnoSFZ32t2Xd13dC6JCU5wDHoDxb+fcp0="; 17 }; 18 19 nativeBuildInputs = [ pkg-config autoreconfHook ]; 20 buildInputs = [ openssl ]; 21 22 meta = with lib; { 23 description = "Bitcoin Script Debugger";
··· 3 , autoreconfHook 4 , pkg-config 5 , openssl 6 + , unstableGitUpdater 7 }: 8 9 stdenv.mkDerivation rec { 10 pname = "btcdeb"; 11 + version = "0.3.20-unstable-2024-02-06"; 12 13 src = fetchFromGitHub { 14 owner = "bitcoin-core"; 15 repo = "btcdeb"; 16 + rev = "b9288fc3371eb1d9be0cae2549be25de66659be8"; 17 + hash = "sha256-IieLNMA3m6g2Kn7g3iewmUL9c+meMR4hrrwVYqNZoh8="; 18 }; 19 20 nativeBuildInputs = [ pkg-config autoreconfHook ]; 21 buildInputs = [ openssl ]; 22 + 23 + enableParallelBuilding = true; 24 + 25 + passthru.updateScript = unstableGitUpdater {}; 26 27 meta = with lib; { 28 description = "Bitcoin Script Debugger";