Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

Merge pull request #272548 from prusnak/bitcoin

bitcoin: 25.1 -> 26.0

authored by Pavol Rusnak and committed by GitHub e1107739 647d3ffe

+5 -5
+5 -5
pkgs/applications/blockchains/bitcoin/default.nix
··· 33 in 34 stdenv.mkDerivation rec { 35 pname = if withGui then "bitcoin" else "bitcoind"; 36 - version = "25.1"; 37 38 src = fetchurl { 39 urls = [ 40 "https://bitcoincore.org/bin/bitcoin-core-${version}/bitcoin-${version}.tar.gz" 41 ]; 42 # hash retrieved from signed SHA256SUMS 43 - sha256 = "bec2a598d8dfa8c2365b77f13012a733ec84b8c30386343b7ac1996e901198c9"; 44 }; 45 46 nativeBuildInputs = ··· 55 ++ lib.optionals withGui [ qrencode qtbase qttools ]; 56 57 postInstall = '' 58 - installShellCompletion --cmd bitcoin-cli --bash contrib/completions/bash/bitcoin-cli.bash-completion 59 - installShellCompletion --cmd bitcoind --bash contrib/completions/bash/bitcoind.bash-completion 60 - installShellCompletion --cmd bitcoin-tx --bash contrib/completions/bash/bitcoin-tx.bash-completion 61 62 installShellCompletion --fish contrib/completions/fish/bitcoin-cli.fish 63 installShellCompletion --fish contrib/completions/fish/bitcoind.fish
··· 33 in 34 stdenv.mkDerivation rec { 35 pname = if withGui then "bitcoin" else "bitcoind"; 36 + version = "26.0"; 37 38 src = fetchurl { 39 urls = [ 40 "https://bitcoincore.org/bin/bitcoin-core-${version}/bitcoin-${version}.tar.gz" 41 ]; 42 # hash retrieved from signed SHA256SUMS 43 + sha256 = "ab1d99276e28db62d1d9f3901e85ac358d7f1ebcb942d348a9c4e46f0fcdc0a1"; 44 }; 45 46 nativeBuildInputs = ··· 55 ++ lib.optionals withGui [ qrencode qtbase qttools ]; 56 57 postInstall = '' 58 + installShellCompletion --bash contrib/completions/bash/bitcoin-cli.bash 59 + installShellCompletion --bash contrib/completions/bash/bitcoind.bash 60 + installShellCompletion --bash contrib/completions/bash/bitcoin-tx.bash 61 62 installShellCompletion --fish contrib/completions/fish/bitcoin-cli.fish 63 installShellCompletion --fish contrib/completions/fish/bitcoind.fish