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

25 lines
685 B
Nix
Raw Normal View History

{ buildGoModule, fetchFromGitHub, lib }:
2018-07-29 19:16:53 +02:00
buildGoModule rec {
pname = "golangci-lint";
2020-05-13 22:05:38 +02:00
version = "1.27.0";
2018-07-29 19:16:53 +02:00
src = fetchFromGitHub {
owner = "golangci";
repo = "golangci-lint";
rev = "v${version}";
2020-05-13 22:05:38 +02:00
sha256 = "1capiw8af4wmx3wpfslb30xivfyh72x5kj12f8p5pwhl6id31931";
2018-07-29 19:16:53 +02:00
};
vendorSha256 = "16wr8ixicbvdpg5mg6q07sa1b03ydpwdbvbjl3r9qihdqkhhzlr1";
subPackages = [ "cmd/golangci-lint" ];
meta = with lib; {
2018-07-29 19:16:53 +02:00
description = "Linters Runner for Go. 5x faster than gometalinter. Nice colored output.";
2020-03-04 05:33:59 +01:00
homepage = "https://golangci.com/";
2018-07-29 19:16:53 +02:00
license = licenses.agpl3;
platforms = platforms.unix;
maintainers = with maintainers; [ anpryl manveru ];
2018-07-29 19:16:53 +02:00
};
}