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>
This commit is contained in:
Akhil Indurti 2022-07-01 17:51:48 -04:00 committed by GitHub
parent 86481006e7
commit e953e73b6f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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 ];
};
}