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.

40 lines
1.0 KiB
Nix
Raw Normal View History

{ stdenv, buildGoModule, fetchFromGitHub, lib, installShellFiles }:
2018-07-29 18:16:53 +01:00
buildGoModule rec {
pname = "golangci-lint";
2022-05-23 02:52:31 +01:00
version = "1.46.2";
2018-07-29 18:16:53 +01:00
src = fetchFromGitHub {
owner = "golangci";
repo = "golangci-lint";
rev = "v${version}";
2022-05-23 02:52:31 +01:00
sha256 = "sha256-7sDAwWz+qoB/ngeH35tsJ5FZUfAQvQsU6kU9rUHIHMk=";
2018-07-29 18:16:53 +01:00
};
2022-05-23 02:52:31 +01:00
vendorSha256 = "sha256-w38OKN6HPoz37utG/2QSPMai55IRDXCIIymeMe6ogIU=";
doCheck = false;
subPackages = [ "cmd/golangci-lint" ];
2020-07-08 10:20:00 +01:00
nativeBuildInputs = [ installShellFiles ];
ldflags = [
"-s" "-w" "-X main.version=${version}" "-X main.commit=v${version}" "-X main.date=19700101-00:00:00"
];
2020-07-08 10:21:00 +01:00
2020-07-08 10:20:00 +01:00
postInstall = ''
2022-01-04 14:20:27 +00:00
for shell in bash zsh fish; do
2020-07-08 10:20:00 +01:00
HOME=$TMPDIR $out/bin/golangci-lint completion $shell > golangci-lint.$shell
installShellCompletion golangci-lint.$shell
done
'';
meta = with lib; {
2020-07-08 10:22:00 +01: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 18:16:53 +01:00
};
}