tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
btcd: 0.23.3 -> 0.23.4
Aaron Jheng
2 years ago
d542764a
f742512c
+3
-3
1 changed file
expand all
collapse all
unified
split
pkgs
applications
blockchains
btcd
default.nix
+3
-3
pkgs/applications/blockchains/btcd/default.nix
···
2
2
3
3
buildGoModule rec {
4
4
pname = "btcd";
5
5
-
version = "0.23.3";
5
5
+
version = "0.23.4";
6
6
7
7
src = fetchFromGitHub {
8
8
owner = "btcsuite";
9
9
repo = pname;
10
10
rev = "v${version}";
11
11
-
sha256 = "sha256-LdK68Ianiyrs+HVMwrkiX2ruCWKkdpuY8ylxhNbm9qI=";
11
11
+
hash = "sha256-X1kfr6jrVArm0HK0XiN/93OPxqPo8J4U+qglJAf23+A=";
12
12
};
13
13
14
14
-
vendorSha256 = "sha256-3w8rb0sfAIFCXqPXOKb4QwoLd7WsbFv3phu/rJCEjeY=";
14
14
+
vendorHash = "sha256-3w8rb0sfAIFCXqPXOKb4QwoLd7WsbFv3phu/rJCEjeY=";
15
15
16
16
subPackages = [ "." "cmd/*" ];
17
17