golint: 20180208 -> 20181026
- golint has moved from github to golang.org/x/lint - allowGoReferences must be true, fixes #50907
This commit is contained in:
@@ -2,17 +2,29 @@
|
||||
|
||||
buildGoPackage rec {
|
||||
name = "lint-${version}";
|
||||
version = "20180208-${stdenv.lib.strings.substring 0 7 rev}";
|
||||
rev = "e14d9b0f1d332b1420c1ffa32562ad2dc84d645d";
|
||||
version = "20181026-${stdenv.lib.strings.substring 0 7 rev}";
|
||||
rev = "c67002cb31c3a748b7688c27f20d8358b4193582";
|
||||
|
||||
goPackagePath = "github.com/golang/lint";
|
||||
goPackagePath = "golang.org/x/lint";
|
||||
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://github.com/golang/lint";
|
||||
sha256 = "15ynf78v39n71aplrhbqvzfblhndp8cd6lnknm586sdl81wama6p";
|
||||
url = "https://go.googlesource.com/lint";
|
||||
sha256 = "0gymbggskjmphqxqcx4s0vnlcz7mygbix0vhwcwv5r67c0bf6765";
|
||||
};
|
||||
|
||||
goDeps = ./deps.nix;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://golang.org;
|
||||
description = "Linter for Go source code";
|
||||
license = licenses.bsd3;
|
||||
maintainers = with maintainers; [ jhillyerd ];
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user