Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
31 lines
697 B
Nix
31 lines
697 B
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
libpcap,
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "secrets-extractor";
|
|
version = "1.0.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Xenios91";
|
|
repo = "Secrets-Extractor";
|
|
tag = "v${version}";
|
|
hash = "sha256-xtxhatxNK9bRnT1R/5BJkTcubO58sg5ssrziLYvw6mQ=";
|
|
};
|
|
|
|
vendorHash = "sha256-1NfeFw8v6F00CZe8a3qdk/TrUBNi2wr9PvwIsZzkDSk=";
|
|
|
|
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 = licenses.unfree;
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|