forked from mirrors/nixpkgs
97d8a9ea3e
Diff: https://github.com/zricethezav/gitleaks/compare/v8.16.3...v8.16.4 Changelog: https://github.com/zricethezav/gitleaks/releases/tag/v8.16.4
59 lines
1.4 KiB
Nix
59 lines
1.4 KiB
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
, gitleaks
|
|
, installShellFiles
|
|
, testers
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "gitleaks";
|
|
version = "8.16.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "zricethezav";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-j07Uw9MVNUSHw8wwKPal1ENywS4vk/blU11DElhgdFU=";
|
|
};
|
|
|
|
vendorHash = "sha256-Ev0/CSpwJDmc+Dvu/bFDzsgsq80rWImJWXNAUqYHgoE=";
|
|
|
|
ldflags = [
|
|
"-s"
|
|
"-w"
|
|
"-X github.com/zricethezav/gitleaks/v${lib.versions.major version}/cmd.Version=${version}"
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
installShellFiles
|
|
];
|
|
|
|
# With v8 the config tests are are blocking
|
|
doCheck = false;
|
|
|
|
postInstall = ''
|
|
installShellCompletion --cmd ${pname} \
|
|
--bash <($out/bin/${pname} completion bash) \
|
|
--fish <($out/bin/${pname} completion fish) \
|
|
--zsh <($out/bin/${pname} completion zsh)
|
|
'';
|
|
|
|
passthru.tests.version = testers.testVersion {
|
|
package = gitleaks;
|
|
command = "${pname} version";
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Scan git repos (or files) for secrets";
|
|
longDescription = ''
|
|
Gitleaks is a SAST tool for detecting hardcoded secrets like passwords,
|
|
API keys and tokens in git repos.
|
|
'';
|
|
homepage = "https://github.com/zricethezav/gitleaks";
|
|
changelog = "https://github.com/zricethezav/gitleaks/releases/tag/v${version}";
|
|
license = with licenses; [ mit ];
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|