secrethound: init at 1.0.0 (#460447)

This commit is contained in:
Sandro
2025-11-23 04:04:01 +00:00
committed by GitHub
+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";
};
})