nixpkgs/pkgs/by-name/go/go-critic/package.nix

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

50 lines
1.0 KiB
Nix
Raw Normal View History

2024-01-03 08:59:22 +00:00
{
lib,
buildGoModule,
fetchFromGitHub,
testers,
nix-update-script,
go-critic,
}:
buildGoModule rec {
pname = "go-critic";
2024-11-17 11:03:44 +00:00
version = "0.11.5";
2024-01-03 08:59:22 +00:00
src = fetchFromGitHub {
owner = "go-critic";
repo = "go-critic";
rev = "v${version}";
2024-11-17 11:03:44 +00:00
hash = "sha256-KH7jawMd73qdl1S+YQlQGW/2Vj8XjMLJ15Hz0cdwDO4=";
2024-01-03 08:59:22 +00:00
};
2024-11-17 11:03:44 +00:00
vendorHash = "sha256-vBGCFnKKpMcM7RWmT05oPwCItR4QMHhTAZ8x2ejJpcI=";
2024-01-03 08:59:22 +00:00
subPackages = [
"cmd/gocritic"
];
allowGoReference = true;
ldflags = [
"-X main.Version=${version}"
];
passthru = {
tests.version = testers.testVersion {
package = go-critic;
command = "gocritic version";
};
updateScript = nix-update-script { };
};
meta = {
description = "Most opinionated Go source code linter for code audit";
homepage = "https://go-critic.com/";
changelog = "https://github.com/go-critic/go-critic/releases/tag/${src.rev}";
license = lib.licenses.mit;
mainProgram = "gocritic";
maintainers = with lib.maintainers; [ katexochen ];
};
}