mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
secrets-extractor: init at 1.0.1
This commit is contained in:
parent
2a0bc341b5
commit
e279a72210
2 changed files with 33 additions and 0 deletions
31
pkgs/tools/security/secrets-extractor/default.nix
Normal file
31
pkgs/tools/security/secrets-extractor/default.nix
Normal file
|
@ -0,0 +1,31 @@
|
|||
{ lib
|
||||
, buildGoModule
|
||||
, fetchFromGitHub
|
||||
, libpcap
|
||||
}:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "secrets-extractor";
|
||||
version = "1.0.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "Xenios91";
|
||||
repo = "Secrets-Extractor";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-cwEG0cXlyhrUSQAuZ/5KVqJtez13GvZghabsooXCM/U=";
|
||||
};
|
||||
|
||||
vendorSha256 = "sha256-KhAaBNSpFu7LAWiHCWD1OssexW9N96ArDb7Oo1AaiWI=";
|
||||
|
||||
buildInputs = [
|
||||
libpcap
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Tool to check packets for secrets";
|
||||
homepage = "https://github.com/Xenios91/Secrets-Extractor";
|
||||
# https://github.com/Xenios91/Secrets-Extractor/issues/1
|
||||
license = with licenses; [ unfree ];
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
|
@ -29599,6 +29599,8 @@ with pkgs;
|
|||
|
||||
seatd = callPackage ../applications/misc/seatd { };
|
||||
|
||||
secrets-extractor = callPackage ../tools/security/secrets-extractor { };
|
||||
|
||||
secretscanner = callPackage ../tools/security/secretscanner { };
|
||||
|
||||
semiphemeral = callPackage ../tools/misc/semiphemeral { };
|
||||
|
|
Loading…
Reference in a new issue