2021-03-09 03:18:52 +00:00
|
|
|
{ lib, buildGoModule, fetchgit }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-03-09 03:18:52 +00:00
|
|
|
buildGoModule rec {
|
2020-04-24 23:36:52 +00:00
|
|
|
pname = "lint";
|
2021-03-09 03:18:52 +00:00
|
|
|
version = "20201208-${lib.strings.substring 0 7 rev}";
|
|
|
|
rev = "83fdc39ff7b56453e3793356bcff3070b9b96445";
|
2020-08-20 17:08:02 +00:00
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
excludedPackages = "testdata";
|
|
|
|
|
|
|
|
# we must allow references to the original `go` package, as golint uses
|
|
|
|
# compiler go/build package to load the packages it's linting.
|
|
|
|
allowGoReference = true;
|
|
|
|
|
|
|
|
src = fetchgit {
|
|
|
|
inherit rev;
|
|
|
|
url = "https://go.googlesource.com/lint";
|
2021-03-09 03:18:52 +00:00
|
|
|
sha256 = "sha256-g4Z9PREOxGoN7n/XhutawsITBznJlbz6StXeDYvOQ1c=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2021-03-09 03:18:52 +00:00
|
|
|
vendorSha256 = "sha256-dPadFoymYu2Uw2AXZfbaBfxsN8IWMuK1TrcknHco3Bo=";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-02-05 17:12:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
homepage = "https://golang.org";
|
|
|
|
description = "Linter for Go source code";
|
|
|
|
license = licenses.bsd3;
|
2021-03-09 03:18:52 +00:00
|
|
|
maintainers = with maintainers; [ jhillyerd tomberek ];
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|