···89buildGoModule rec {
10 pname = "gotools";
11- version = "0.30.0";
1213 # using GitHub instead of https://go.googlesource.com/tools because Gitiles UI is to basic to browse
14 src = fetchFromGitHub {
15 owner = "golang";
16 repo = "tools";
17 rev = "v${version}";
18- hash = "sha256-yUkdZSe/GV0w1qK8aQjcFE4tNKYC8f4JeFgPiv8GlQc=";
19 };
2021 allowGoReference = true;
22 doCheck = false;
2324- vendorHash = "sha256-+jhCNi7bGkRdI1Ywfe3q4i+zcm3UJ0kbQalsDD3WkS4=";
2526 nativeBuildInputs = [ makeWrapper ];
27···29 # The gopls folder contains a Go submodule which causes a build failure
30 # and lives in its own package named gopls.
31 rm -r gopls
0032 '';
3334 # Set GOTOOLDIR for derivations adding this to buildInputs
···89buildGoModule rec {
10 pname = "gotools";
11+ version = "0.34.0";
1213 # using GitHub instead of https://go.googlesource.com/tools because Gitiles UI is to basic to browse
14 src = fetchFromGitHub {
15 owner = "golang";
16 repo = "tools";
17 rev = "v${version}";
18+ hash = "sha256-C+P2JoD4NzSAkAQuA20bVrfLZrMHXekvXn8KPOM5Nj4=";
19 };
2021 allowGoReference = true;
22 doCheck = false;
2324+ vendorHash = "sha256-UZNYHx5y+kRp3AJq6s4Wy+k789GDG7FBTSzCTorVjgg=";
2526 nativeBuildInputs = [ makeWrapper ];
27···29 # The gopls folder contains a Go submodule which causes a build failure
30 # and lives in its own package named gopls.
31 rm -r gopls
32+ # cmd/auth folder is similar and is scheduled to be removed https://github.com/golang/go/issues/70872
33+ rm -r cmd/auth
34 '';
3536 # Set GOTOOLDIR for derivations adding this to buildInputs