about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAkhil Indurti <aindurti@gmail.com>2022-07-01 17:51:48 -0400
committerGitHub <noreply@github.com>2022-07-01 23:51:48 +0200
commite953e73b6f303ab97dcd0c6843e5114a8c57556d (patch)
tree93443898591cc634a2ab6b6ae142c2449765346c
parent86481006e78633eccd6b849b88697c7f4d70f04d (diff)
go-tools: 2021.1.2 -> 2022.1.2 (#179827)
* go-tools: 2021.1.2 -> 2022.1.2

* Update pkgs/development/tools/go-tools/default.nix

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
-rw-r--r--pkgs/development/tools/go-tools/default.nix10
1 files changed, 6 insertions, 4 deletions
diff --git a/pkgs/development/tools/go-tools/default.nix b/pkgs/development/tools/go-tools/default.nix
index 0812c949e37ec..3890133256ed9 100644
--- a/pkgs/development/tools/go-tools/default.nix
+++ b/pkgs/development/tools/go-tools/default.nix
@@ -5,16 +5,18 @@
 
 buildGoModule rec {
   pname = "go-tools";
-  version = "2021.1.2";
+  version = "2022.1.2";
 
   src = fetchFromGitHub {
     owner = "dominikh";
     repo = "go-tools";
     rev = version;
-    sha256 = "sha256-C6ekgrc+zvm8ZLvw1uYR3ZiMLCNSUw1ANEuM4bT4C/o=";
+    sha256 = "sha256-pfZv/GZxb7weD+JFGCOknhRCsx8g5puQfpY9lZ4v6Rs=";
   };
 
-  vendorSha256 = "sha256-EjCOMdeJ0whp2pHZvm4VV2K78UNKzl98Z/cQvGhWSyY=";
+  vendorSha256 = "sha256-19uLCtKuuZoVwC4SUKvYGWi2ryqAQbcKXY1iNjIqyn8=";
+
+  excludedPackages = [ "website" ];
 
   doCheck = false;
 
@@ -22,6 +24,6 @@ buildGoModule rec {
     description = "A collection of tools and libraries for working with Go code, including linters and static analysis";
     homepage = "https://staticcheck.io";
     license = licenses.mit;
-    maintainers = with maintainers; [ rvolosatovs kalbasit ];
+    maintainers = with maintainers; [ rvolosatovs kalbasit smasher164 ];
   };
 }