tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
grpcurl: 1.8.8 -> 1.8.9
R. Ryantm
2 years ago
fa1b02a5
c9e3cc43
+3
-3
1 changed file
expand all
collapse all
unified
split
pkgs
tools
networking
grpcurl
default.nix
+3
-3
pkgs/tools/networking/grpcurl/default.nix
···
2
2
3
3
buildGoModule rec {
4
4
pname = "grpcurl";
5
5
-
version = "1.8.8";
5
5
+
version = "1.8.9";
6
6
7
7
src = fetchFromGitHub {
8
8
owner = "fullstorydev";
9
9
repo = "grpcurl";
10
10
rev = "v${version}";
11
11
-
sha256 = "sha256-/GPFUMN6NQAoKOYJ6j9j0GmyEcYtYdOB7B8v2gNpNm8=";
11
11
+
sha256 = "sha256-zN/vleCph919HXZZ9wsXoJBXRT6y7gjyuQxnjRMzq00=";
12
12
};
13
13
14
14
subPackages = [ "cmd/grpcurl" ];
15
15
16
16
-
vendorHash = "sha256-8mGlmWuWae/NQ1aR0KVj0XS7rqROCs0PBDUkMAKijYU=";
16
16
+
vendorHash = "sha256-g5G966CuaVILGAgWunHAPrrkLjSv8pBj9R4bcLzyI+A=";
17
17
18
18
ldflags = [ "-s" "-w" "-X main.version=${version}" ];
19
19