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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

44 lines
1.0 KiB
Nix
Raw Normal View History

2022-08-05 12:14:14 +00:00
{ buildGoModule, fetchFromGitHub, lib, installShellFiles }:
2018-07-29 17:16:53 +00:00
buildGoModule rec {
pname = "golangci-lint";
2022-08-05 12:14:14 +00:00
version = "1.48.0";
2018-07-29 17:16:53 +00:00
src = fetchFromGitHub {
owner = "golangci";
repo = "golangci-lint";
rev = "v${version}";
2022-08-05 12:14:14 +00:00
sha256 = "sha256-6nXn1+LsjiXjCeHhvVjyU1F6IJ8YP1Oj+5tDRhiMuUc=";
2018-07-29 17:16:53 +00:00
};
2022-08-05 12:14:14 +00:00
vendorSha256 = "sha256-4ZqO4NEZfIhl/hWcB0HeRbp2jQ/WhMBpTLmP2W7X7xM=";
doCheck = false;
subPackages = [ "cmd/golangci-lint" ];
2020-07-08 09:20:00 +00:00
nativeBuildInputs = [ installShellFiles ];
ldflags = [
2022-07-25 13:49:15 +00:00
"-s"
"-w"
"-X main.version=${version}"
"-X main.commit=v${version}"
"-X main.date=19700101-00:00:00"
];
2020-07-08 09:21:00 +00:00
2020-07-08 09:20:00 +00:00
postInstall = ''
2022-01-04 14:20:27 +00:00
for shell in bash zsh fish; do
2020-07-08 09:20:00 +00:00
HOME=$TMPDIR $out/bin/golangci-lint completion $shell > golangci-lint.$shell
installShellCompletion golangci-lint.$shell
done
'';
meta = with lib; {
2020-07-08 09:22:00 +00:00
description = "Fast linters Runner for Go";
homepage = "https://golangci-lint.run/";
2021-02-22 17:10:41 +00:00
license = licenses.gpl3Plus;
maintainers = with maintainers; [ anpryl manveru mic92 ];
2018-07-29 17:16:53 +00:00
};
}