Merge pull request #280760 from octodi/passdetective

passdetective: init at 1.0.7
This commit is contained in:
a-n-n-a-l-e-e 2024-01-18 23:02:40 -08:00 committed by GitHub
commit 9e16b6a1ec
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -0,0 +1,35 @@
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "passdetective";
version = "1.0.7";
src = fetchFromGitHub {
owner = "aydinnyunus";
repo = "PassDetective";
rev = version;
hash = "sha256-ln+nKESCYNQwTB6njNQBNUGmF+NXqgzmM1sb/d6ZBcU=";
};
vendorHash = "sha256-4FF0aQiuVN382RBCYI7SpoB8U8MZoXTomuFEvcbcREg=";
ldflags = [
"-s"
"-w"
"-extldflags"
"-static"
"-X=main.build=${version}"
];
meta = with lib; {
description = "Scans command history to detect mistakenly written passwords, API keys, and secrets";
homepage = "https://github.com/aydinnyunus/PassDetective";
changelog = "https://github.com/aydinnyunus/PassDetective/releases/tag/${version}";
license = licenses.asl20;
maintainers = with maintainers; [ octodi ];
mainProgram = "PassDetective";
};
}