tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
blocky: 0.21 -> 0.22
Aaron Jheng
2 years ago
cfbc8f99
020300a7
+3
-3
1 changed file
expand all
collapse all
unified
split
pkgs
applications
networking
blocky
default.nix
+3
-3
pkgs/applications/networking/blocky/default.nix
···
6
6
7
7
buildGoModule rec {
8
8
pname = "blocky";
9
9
-
version = "0.21";
9
9
+
version = "0.22";
10
10
11
11
src = fetchFromGitHub {
12
12
owner = "0xERR0R";
13
13
repo = pname;
14
14
rev = "v${version}";
15
15
-
sha256 = "sha256-+88QMASMEY1pJuejFUqqW1Ky7TpoSwCzUy1oueL7FKU=";
15
15
+
hash = "sha256-iU7fpTn8sPtglZfqLJ6fVYbHtYp0jqItSpJsvN4iKE8=";
16
16
};
17
17
18
18
# needs network connection and fails at
19
19
# https://github.com/0xERR0R/blocky/blob/development/resolver/upstream_resolver_test.go
20
20
doCheck = false;
21
21
22
22
-
vendorSha256 = "sha256-EsANifwaEi5PdY0Y2QZjD55sZqsqYWrC5Vh4uxpTs5A=";
22
22
+
vendorHash = "sha256-PnqpDAbHCs1wFudYy+nyG+p/E6ig7ZuhbuU4CFFoiyk=";
23
23
24
24
ldflags = [ "-s" "-w" "-X github.com/0xERR0R/blocky/util.Version=${version}" ];
25
25