gotools: 0.30.0 -> 0.34.0

Signed-off-by: phanirithvij <phanirithvij2000@gmail.com>

+5 -3
+5 -3
pkgs/by-name/go/gotools/package.nix
··· 8 9 buildGoModule rec { 10 pname = "gotools"; 11 - version = "0.30.0"; 12 13 # 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 }; 20 21 allowGoReference = true; 22 doCheck = false; 23 24 - vendorHash = "sha256-+jhCNi7bGkRdI1Ywfe3q4i+zcm3UJ0kbQalsDD3WkS4="; 25 26 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 ''; 33 34 # Set GOTOOLDIR for derivations adding this to buildInputs
··· 8 9 buildGoModule rec { 10 pname = "gotools"; 11 + version = "0.34.0"; 12 13 # 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 }; 20 21 allowGoReference = true; 22 doCheck = false; 23 24 + vendorHash = "sha256-UZNYHx5y+kRp3AJq6s4Wy+k789GDG7FBTSzCTorVjgg="; 25 26 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 ''; 35 36 # Set GOTOOLDIR for derivations adding this to buildInputs