1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/development/tools/golangci-lint/default.nix

34 lines
948 B
Nix
Raw Normal View History

2020-07-08 10:20:00 +01:00
{ buildGoModule, fetchFromGitHub, lib, installShellFiles }:
2018-07-29 18:16:53 +01:00
buildGoModule rec {
pname = "golangci-lint";
2020-07-08 07:42:40 +01:00
version = "1.28.1";
2018-07-29 18:16:53 +01:00
src = fetchFromGitHub {
owner = "golangci";
repo = "golangci-lint";
rev = "v${version}";
2020-07-08 07:42:40 +01:00
sha256 = "18rhd5baqg68wsil8rqzg1yiqys4y53lqy8gcp68wn4i4jnvkgsm";
2018-07-29 18:16:53 +01:00
};
2020-07-08 07:42:40 +01:00
vendorSha256 = "0dg3rjzkvzh4n7r4kp68qhg96ijqks9hkz1cjcc02xa38ygma7gz";
subPackages = [ "cmd/golangci-lint" ];
2020-07-08 10:20:00 +01:00
nativeBuildInputs = [ installShellFiles ];
postInstall = ''
for shell in bash zsh; do
HOME=$TMPDIR $out/bin/golangci-lint completion $shell > golangci-lint.$shell
installShellCompletion golangci-lint.$shell
done
'';
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
};
}