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 8 9 9 buildGoModule rec { 10 10 pname = "gotools"; 11 - version = "0.30.0"; 11 + version = "0.34.0"; 12 12 13 13 # using GitHub instead of https://go.googlesource.com/tools because Gitiles UI is to basic to browse 14 14 src = fetchFromGitHub { 15 15 owner = "golang"; 16 16 repo = "tools"; 17 17 rev = "v${version}"; 18 - hash = "sha256-yUkdZSe/GV0w1qK8aQjcFE4tNKYC8f4JeFgPiv8GlQc="; 18 + hash = "sha256-C+P2JoD4NzSAkAQuA20bVrfLZrMHXekvXn8KPOM5Nj4="; 19 19 }; 20 20 21 21 allowGoReference = true; 22 22 doCheck = false; 23 23 24 - vendorHash = "sha256-+jhCNi7bGkRdI1Ywfe3q4i+zcm3UJ0kbQalsDD3WkS4="; 24 + vendorHash = "sha256-UZNYHx5y+kRp3AJq6s4Wy+k789GDG7FBTSzCTorVjgg="; 25 25 26 26 nativeBuildInputs = [ makeWrapper ]; 27 27 ··· 29 29 # The gopls folder contains a Go submodule which causes a build failure 30 30 # and lives in its own package named gopls. 31 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 32 34 ''; 33 35 34 36 # Set GOTOOLDIR for derivations adding this to buildInputs