golangci-lint: init at 1.9.2

This commit is contained in:
Michael Fellinger 2018-07-29 19:16:53 +02:00
parent 285d770949
commit 06eb270c8f
2 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,24 @@
{ buildGoPackage, fetchFromGitHub, lib }:
buildGoPackage rec {
name = "golangci-lint-${version}";
version = "1.9.2";
goPackagePath = "github.com/golangci/golangci-lint";
subPackages = [ "cmd/golangci-lint" ];
src = fetchFromGitHub {
owner = "golangci";
repo = "golangci-lint";
rev = "v${version}";
sha256 = "0r05j6ayk5778fkd5r1sgcwq675ra0vq82lqs125g70291ryha08";
};
meta = with lib; {
description = "Linters Runner for Go. 5x faster than gometalinter. Nice colored output.";
homepage = https://golangci.com/;
license = licenses.agpl3;
platforms = platforms.unix;
maintainers = [ maintainers.manveru ];
};
}

View File

@ -14205,6 +14205,8 @@ with pkgs;
golint = callPackage ../development/tools/golint { };
golangci-lint = callPackage ../development/tools/golangci-lint { };
godef = callPackage ../development/tools/godef { };
goimports = callPackage ../development/tools/goimports { };