mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-29 09:04:17 +00:00
77f1e99598
Diff: https://github.com/golangci/golangci-lint/compare/v1.62.0...v1.62.2 Changelog: https://github.com/golangci/golangci-lint/blob/v1.62.2/CHANGELOG.md
51 lines
1.1 KiB
Nix
51 lines
1.1 KiB
Nix
{
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
lib,
|
|
installShellFiles,
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "golangci-lint";
|
|
version = "1.62.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "golangci";
|
|
repo = "golangci-lint";
|
|
rev = "v${version}";
|
|
hash = "sha256-8Itq4tWqJa9agGcPoQaJoQOgy/qhhegzPORDztS9T30=";
|
|
};
|
|
|
|
vendorHash = "sha256-SEoF+k7MYYq81v9m3eaDbIv1k9Hek5iAZ0TTJEgAsI4=";
|
|
|
|
subPackages = [ "cmd/golangci-lint" ];
|
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
ldflags = [
|
|
"-s"
|
|
"-X main.version=${version}"
|
|
"-X main.commit=v${version}"
|
|
"-X main.date=19700101-00:00:00"
|
|
];
|
|
|
|
postInstall = ''
|
|
for shell in bash zsh fish; do
|
|
HOME=$TMPDIR $out/bin/golangci-lint completion $shell > golangci-lint.$shell
|
|
installShellCompletion golangci-lint.$shell
|
|
done
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Fast linters Runner for Go";
|
|
homepage = "https://golangci-lint.run/";
|
|
changelog = "https://github.com/golangci/golangci-lint/blob/v${version}/CHANGELOG.md";
|
|
mainProgram = "golangci-lint";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [
|
|
SuperSandro2000
|
|
mic92
|
|
];
|
|
};
|
|
}
|