secrets-extractor: 1.0.1 -> 1.0.2 (#366570)

This commit is contained in:
Fabian Affolter
2024-12-20 07:55:10 +01:00
committed by GitHub
@@ -7,26 +7,24 @@
buildGoModule rec {
pname = "secrets-extractor";
version = "1.0.1";
version = "1.0.2";
src = fetchFromGitHub {
owner = "Xenios91";
repo = "Secrets-Extractor";
rev = "v${version}";
hash = "sha256-cwEG0cXlyhrUSQAuZ/5KVqJtez13GvZghabsooXCM/U=";
rev = "refs/tags/v${version}";
hash = "sha256-xtxhatxNK9bRnT1R/5BJkTcubO58sg5ssrziLYvw6mQ=";
};
vendorHash = "sha256-KhAaBNSpFu7LAWiHCWD1OssexW9N96ArDb7Oo1AaiWI=";
vendorHash = "sha256-1NfeFw8v6F00CZe8a3qdk/TrUBNi2wr9PvwIsZzkDSk=";
buildInputs = [
libpcap
];
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 ];
license = licenses.unfree;
maintainers = with maintainers; [ fab ];
};
}