about summary refs log tree commit diff
path: root/pkgs/development/tools/errcheck
diff options
context:
space:
mode:
authorEuan Kemp <euank@euank.com>2022-04-08 07:53:31 -0700
committerGitHub <noreply@github.com>2022-04-08 16:53:31 +0200
commit3cd8c0878f9af06720ef9a59398990d2570b9b48 (patch)
tree04e5217be9d5f00f6bf05367897f14025c3180e6 /pkgs/development/tools/errcheck
parentf35d4e3c73eaecfa5d1eabdcfd14d8047b440a15 (diff)
errcheck: 1.6.0 -> unstable-2022-03-26 (#167423)
Diffstat (limited to 'pkgs/development/tools/errcheck')
-rw-r--r--pkgs/development/tools/errcheck/default.nix13
1 files changed, 7 insertions, 6 deletions
diff --git a/pkgs/development/tools/errcheck/default.nix b/pkgs/development/tools/errcheck/default.nix
index a387c14c0a5c9..eb8fd99f9e5a1 100644
--- a/pkgs/development/tools/errcheck/default.nix
+++ b/pkgs/development/tools/errcheck/default.nix
@@ -2,22 +2,23 @@
 
 buildGoModule rec {
   pname = "errcheck";
-  version = "1.6.0";
+  version = "unstable-2022-03-26";
 
   src = fetchFromGitHub {
     owner = "kisielk";
     repo = "errcheck";
-    rev = "v${version}";
-    sha256 = "sha256-Przf2c2jFNdkUq7IOUD7ChXHiSayAz4xTsNzajycYZ0=";
+    rev = "e62617a91f7bd1abab2cbe7f28966188dd85eee0";
+    sha256 = "sha256-RoPv6Odh8l9DF1S50pNEomLtI4uTDNjveOXZd4S52c0=";
   };
 
-  vendorSha256 = "sha256-rluaBdW+w2zPThELlBwX/6LXDgc2aIk/ucbrsrABpVc=";
+  vendorSha256 = "sha256-fDugaI9Fh0L27yKSFNXyjYLMMDe6CRgE6kVLiJ3+Kyw=";
+
+  subPackages = [ "." ];
 
   meta = with lib; {
-    description = "Program for checking for unchecked errors in go programs";
+    description = "Checks for unchecked errors in go programs";
     homepage = "https://github.com/kisielk/errcheck";
     license = licenses.mit;
     maintainers = with maintainers; [ kalbasit ];
-    platforms = platforms.linux ++ platforms.darwin;
   };
 }