mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
35 lines
854 B
Nix
35 lines
854 B
Nix
{ 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";
|
|
};
|
|
}
|