diff options
| author | fanquake <fanquake@gmail.com> | 2023-05-26 11:13:58 +0100 |
|---|---|---|
| committer | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2023-05-26 18:26:38 +0000 |
| commit | 08a2058e17a74ac5f7c77e52164ca829a3cff4f7 (patch) | |
| tree | 2c1840eac331065021f0615b1e7d432931170db6 | |
| parent | Merge pull request #234213 from NixOS/backport-234031-to-release-23.05 (diff) | |
| download | nixpkgs-08a2058e17a74ac5f7c77e52164ca829a3cff4f7.tar.gz | |
bitcoin: 24.1 -> 25.0
(cherry picked from commit 83da7af2ca641cd6e64c685ccd70169e68757ed5)
| -rw-r--r-- | pkgs/applications/blockchains/bitcoin/default.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/blockchains/bitcoin/default.nix b/pkgs/applications/blockchains/bitcoin/default.nix index c9dc328504ea..01a3f3e1587a 100644 --- a/pkgs/applications/blockchains/bitcoin/default.nix +++ b/pkgs/applications/blockchains/bitcoin/default.nix @@ -32,14 +32,14 @@ let in stdenv.mkDerivation rec { pname = if withGui then "bitcoin" else "bitcoind"; - version = "24.1"; + version = "25.0"; src = fetchurl { urls = [ "https://bitcoincore.org/bin/bitcoin-core-${version}/bitcoin-${version}.tar.gz" ]; # hash retrieved from signed SHA256SUMS - sha256 = "8a0a3db3b2d9cc024e897113f70a3a65d8de831c129eb6d1e26ffa65e7bfaf4e"; + sha256 = "5df67cf42ca3b9a0c38cdafec5bbb517da5b58d251f32c8d2a47511f9be1ebc2"; }; nativeBuildInputs = |
