tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
bitcoin: 25.0 -> 25.1
fanquake
2 years ago
53793ca0
f8826b4d
+2
-2
1 changed file
expand all
collapse all
unified
split
pkgs
applications
blockchains
bitcoin
default.nix
+2
-2
pkgs/applications/blockchains/bitcoin/default.nix
···
33
in
34
stdenv.mkDerivation rec {
35
pname = if withGui then "bitcoin" else "bitcoind";
36
-
version = "25.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 = "5df67cf42ca3b9a0c38cdafec5bbb517da5b58d251f32c8d2a47511f9be1ebc2";
44
};
45
46
nativeBuildInputs =
···
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 =