secrethound: init at 1.0.0

This commit is contained in:
quasigod
2025-11-10 14:26:50 -05:00
parent 7f2539ca08
commit fea9c0def1
+32
View File
@@ -0,0 +1,32 @@
{
lib,
buildGoModule,
fetchFromGitHub,
}:
buildGoModule (finalAttrs: {
pname = "secrethound";
version = "1.0.0";
src = fetchFromGitHub {
owner = "rafabd1";
repo = "SecretHound";
rev = "v${finalAttrs.version}";
hash = "sha256-nXL7ly4W4MIXy3DcWeTPfP3t77M72EDxaqjQWwNu/TY=";
};
vendorHash = "sha256-oTyI3/+evDTzyH+BjfSP0A1r2bYVAMxtWRsg0G1d2zQ=";
ldflags = [
"-s"
"-w"
];
meta = {
description = "A powerful CLI tool designed to find secrets in JavaScript files, web pages, and other text sources.";
homepage = "https://github.com/rafabd1/SecretHound";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.michaelBelsanti ];
mainProgram = "secrethound";
};
})