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-03-15 15:19:22 +00:00
|
|
|
version = "1.24.0";
|
2018-07-29 18:16:53 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "golangci";
|
|
|
|
repo = "golangci-lint";
|
|
|
|
rev = "v${version}";
|
2020-03-15 15:19:22 +00:00
|
|
|
sha256 = "0m7mcppbgpx2kyl5f9nk61x521v49h18az5l4ads1f3jkkyiya6s";
|
2018-07-29 18:16:53 +01:00
|
|
|
};
|
|
|
|
|
2020-03-15 15:19:22 +00:00
|
|
|
modSha256 = "0ab1s8pqkpss15rd9brin39lzx2fqkvq2v3nhk8kfrgpari2addk";
|
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
|
|
|
};
|
|
|
|
}
|