pretender: init at 1.0.0
This commit is contained in:
parent
567fc860a4
commit
3e9b99058e
2 changed files with 30 additions and 0 deletions
28
pkgs/tools/security/pretender/default.nix
Normal file
28
pkgs/tools/security/pretender/default.nix
Normal file
|
@ -0,0 +1,28 @@
|
|||
{ lib
|
||||
, buildGoModule
|
||||
, fetchFromGitHub
|
||||
}:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "pretender";
|
||||
version = "1.0.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "RedTeamPentesting";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-JTNmebubaJQMtZm1ZGZote1qXjjiMcxSGQYPgLZXd0o=";
|
||||
};
|
||||
|
||||
vendorSha256 = "sha256-CpMrxAZ+7Dc1UgH+AnuGh+gpBZpLshck/1+9WJNssEk=";
|
||||
|
||||
# Tests require network access
|
||||
doCheck = false;
|
||||
|
||||
meta = with lib; {
|
||||
description = "Tool for handling machine-in-the-middle tasks";
|
||||
homepage = "https://github.com/RedTeamPentesting/pretender";
|
||||
license = with licenses; [ mit ];
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
|
@ -10008,6 +10008,8 @@ with pkgs;
|
|||
|
||||
pre-commit = callPackage ../tools/misc/pre-commit { };
|
||||
|
||||
pretender = callPackage ../tools/security/pretender { };
|
||||
|
||||
pretty-simple = callPackage ../development/tools/pretty-simple { };
|
||||
|
||||
prettyping = callPackage ../tools/networking/prettyping { };
|
||||
|
|
Loading…
Reference in a new issue