2020-01-01 18:33:38 +00:00
|
|
|
{ buildGoModule, fetchFromGitHub, lib }:
|
2018-07-29 18:16:53 +01:00
|
|
|
|
2020-01-01 18:33:38 +00:00
|
|
|
buildGoModule rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "golangci-lint";
|
2020-01-01 18:33:38 +00:00
|
|
|
version = "1.22.2";
|
2018-07-29 18:16:53 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "golangci";
|
|
|
|
repo = "golangci-lint";
|
|
|
|
rev = "v${version}";
|
2020-01-01 18:33:38 +00:00
|
|
|
sha256 = "1wwp6ppm5p2cf7jbcgmqm6alzaj34sa079d98afw21yr81qxvvid";
|
2018-07-29 18:16:53 +01:00
|
|
|
};
|
|
|
|
|
2020-01-01 18:33:38 +00:00
|
|
|
modSha256 = "02j2cf5778ds0vwz0kkd9c1x5ap732vkq20bfg440spfajscvndm";
|
|
|
|
subPackages = [ "cmd/golangci-lint" ];
|
|
|
|
|
2018-07-29 18:16:53 +01:00
|
|
|
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;
|
2019-05-22 19:05:59 +01:00
|
|
|
maintainers = with maintainers; [ anpryl manveru ];
|
2018-07-29 18:16:53 +01:00
|
|
|
};
|
|
|
|
}
|