nixpkgs/pkgs/development/tools/golint/default.nix

31 lines
856 B
Nix
Raw Normal View History

{ stdenv, buildGoPackage, fetchgit }:
2016-06-04 15:35:09 +03:00
buildGoPackage rec {
name = "lint-${version}";
version = "20181026-${stdenv.lib.strings.substring 0 7 rev}";
rev = "c67002cb31c3a748b7688c27f20d8358b4193582";
2016-06-04 15:35:09 +03:00
goPackagePath = "golang.org/x/lint";
2016-06-04 15:35:09 +03: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;
2016-06-04 15:35:09 +03:00
src = fetchgit {
inherit rev;
url = "https://go.googlesource.com/lint";
sha256 = "0gymbggskjmphqxqcx4s0vnlcz7mygbix0vhwcwv5r67c0bf6765";
2016-06-04 15:35:09 +03:00
};
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;
};
2016-06-04 15:35:09 +03:00
}