2021-03-09 03:18:52 +00:00
|
|
|
{ lib
|
|
|
|
, buildGoModule
|
2021-02-05 17:12:51 +00:00
|
|
|
, fetchFromGitHub
|
2022-09-09 14:08:57 +00:00
|
|
|
, gitleaks
|
|
|
|
, installShellFiles
|
|
|
|
, testers
|
2021-02-05 17:12:51 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "gitleaks";
|
2023-10-09 19:29:22 +00:00
|
|
|
version = "8.18.0";
|
2021-02-05 17:12:51 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "zricethezav";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2023-10-09 19:29:22 +00:00
|
|
|
hash = "sha256-659wQBv8DuYB4vI+qnBLS9u22kGlg4ne4DyKFoomlOw=";
|
2021-02-05 17:12:51 +00:00
|
|
|
};
|
|
|
|
|
2023-10-09 19:29:22 +00:00
|
|
|
vendorHash = "sha256-PPEEQ2Bt20UK+mQL59jVnX8HtzCsqW4uRwR3mOdhDis=";
|
2021-02-05 17:12:51 +00:00
|
|
|
|
2021-08-22 07:53:02 +00:00
|
|
|
ldflags = [
|
2021-12-24 04:21:11 +00:00
|
|
|
"-s"
|
|
|
|
"-w"
|
2022-09-09 14:08:57 +00:00
|
|
|
"-X github.com/zricethezav/gitleaks/v${lib.versions.major version}/cmd.Version=${version}"
|
2021-08-22 07:53:02 +00:00
|
|
|
];
|
2021-03-09 03:18:52 +00:00
|
|
|
|
2022-12-17 10:02:37 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
installShellFiles
|
|
|
|
];
|
2022-09-09 14:08:57 +00:00
|
|
|
|
2021-12-24 04:21:11 +00:00
|
|
|
# With v8 the config tests are are blocking
|
|
|
|
doCheck = false;
|
|
|
|
|
2022-09-09 14:08:57 +00:00
|
|
|
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";
|
|
|
|
};
|
|
|
|
|
2021-02-05 17:12:51 +00:00
|
|
|
meta = with lib; {
|
|
|
|
description = "Scan git repos (or files) for secrets";
|
|
|
|
longDescription = ''
|
|
|
|
Gitleaks is a SAST tool for detecting hardcoded secrets like passwords,
|
2021-12-24 04:21:11 +00:00
|
|
|
API keys and tokens in git repos.
|
2021-02-05 17:12:51 +00:00
|
|
|
'';
|
|
|
|
homepage = "https://github.com/zricethezav/gitleaks";
|
2022-12-17 10:02:37 +00:00
|
|
|
changelog = "https://github.com/zricethezav/gitleaks/releases/tag/v${version}";
|
2021-02-05 17:12:51 +00:00
|
|
|
license = with licenses; [ mit ];
|
|
|
|
maintainers = with maintainers; [ fab ];
|
|
|
|
};
|
|
|
|
}
|