2020-03-27 07:33:21 +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-05-13 21:05:38 +01:00
|
|
|
version = "1.27.0";
|
2018-07-29 18:16:53 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "golangci";
|
|
|
|
repo = "golangci-lint";
|
|
|
|
rev = "v${version}";
|
2020-05-13 21:05:38 +01:00
|
|
|
sha256 = "1capiw8af4wmx3wpfslb30xivfyh72x5kj12f8p5pwhl6id31931";
|
2018-07-29 18:16:53 +01:00
|
|
|
};
|
|
|
|
|
2020-05-01 02:59:00 +01:00
|
|
|
vendorSha256 = "16wr8ixicbvdpg5mg6q07sa1b03ydpwdbvbjl3r9qihdqkhhzlr1";
|
2020-01-01 18:33:38 +00:00
|
|
|
subPackages = [ "cmd/golangci-lint" ];
|
|
|
|
|
2020-03-27 07:33:21 +00:00
|
|
|
meta = with lib; {
|
2018-07-29 18:16:53 +01:00
|
|
|
description = "Linters Runner for Go. 5x faster than gometalinter. Nice colored output.";
|
2020-03-04 04:33:59 +00:00
|
|
|
homepage = "https://golangci.com/";
|
2018-07-29 18:16:53 +01:00
|
|
|
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
|
|
|
};
|
|
|
|
}
|