nixpkgs/pkgs/development/tools/golangci-lint/default.nix

25 lines
682 B
Nix
Raw Normal View History

{ buildGoModule, fetchFromGitHub, lib }:
2018-07-29 18:16:53 +01:00
buildGoModule rec {
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";
subPackages = [ "cmd/golangci-lint" ];
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;
maintainers = with maintainers; [ anpryl manveru ];
2018-07-29 18:16:53 +01:00
};
}