lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #188773 from fabaff/pretender

authored by

Sandro and committed by
GitHub
87749361 67cd5d03

+30
+28
pkgs/tools/security/pretender/default.nix
··· 1 + { lib 2 + , buildGoModule 3 + , fetchFromGitHub 4 + }: 5 + 6 + buildGoModule rec { 7 + pname = "pretender"; 8 + version = "1.0.0"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "RedTeamPentesting"; 12 + repo = pname; 13 + rev = "v${version}"; 14 + sha256 = "sha256-JTNmebubaJQMtZm1ZGZote1qXjjiMcxSGQYPgLZXd0o="; 15 + }; 16 + 17 + vendorSha256 = "sha256-CpMrxAZ+7Dc1UgH+AnuGh+gpBZpLshck/1+9WJNssEk="; 18 + 19 + # Tests require network access 20 + doCheck = false; 21 + 22 + meta = with lib; { 23 + description = "Tool for handling machine-in-the-middle tasks"; 24 + homepage = "https://github.com/RedTeamPentesting/pretender"; 25 + license = with licenses; [ mit ]; 26 + maintainers = with maintainers; [ fab ]; 27 + }; 28 + }
+2
pkgs/top-level/all-packages.nix
··· 10008 10008 10009 10009 pre-commit = callPackage ../tools/misc/pre-commit { }; 10010 10010 10011 + pretender = callPackage ../tools/security/pretender { }; 10012 + 10011 10013 pretty-simple = callPackage ../development/tools/pretty-simple { }; 10012 10014 10013 10015 prettyping = callPackage ../tools/networking/prettyping { };