go-tools: 2019.2.2 -> 2020.1.3

This commit is contained in:
Mario Rodas 2020-02-21 07:35:00 -05:00
parent d222dc2575
commit 65593304e0
No known key found for this signature in database
GPG key ID: 325649BCA6D53027

View file

@ -5,22 +5,21 @@
buildGoModule rec {
pname = "go-tools";
version = "2019.2.2";
version = "2020.1.3";
goPackagePath = "honnef.co/go/tools";
excludedPackages = ''\(simple\|ssa\|ssa/ssautil\|lint\|staticcheck\|stylecheck\|unused\)/testdata'';
src = fetchFromGitHub {
owner = "dominikh";
repo = "go-tools";
rev = version;
sha256 = "1vndpwg797z2gw9h9378iq99aqy7nalqx82lgvcsaqnkypdmppnd";
sha256 = "0pvi1mzhy6zgx4zfgdypbl4zhvgg11hl5qv7blf2qs0a96j2djhf";
};
modSha256 = "0ysaq94m7pkziliz4z4dl8ad84mbn17m2hqxvs9wbw4iwhkpi7gz";
modSha256 = "03560xjr2531xj87paskfx2zs364fz6y4kpsid8x08s1syq9nq7p";
meta = with lib; {
description = "A collection of tools and libraries for working with Go code, including linters and static analysis.";
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 ];