nixpkgs/pkgs/tools/security/pretender/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
751 B
Nix
Raw Normal View History

2022-08-29 06:33:08 +00:00
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "pretender";
2023-05-13 06:17:38 +00:00
version = "1.1.1";
2022-08-29 06:33:08 +00:00
src = fetchFromGitHub {
owner = "RedTeamPentesting";
repo = pname;
2023-05-04 13:15:49 +00:00
rev = "refs/tags/v${version}";
2023-05-13 06:17:38 +00:00
hash = "sha256-3i7zNzwURSNSleiW+KBkxdqBv9yshtBu1hLKtjWe9OE=";
2022-08-29 06:33:08 +00:00
};
2023-05-04 06:21:00 +00:00
vendorHash = "sha256-uw3mpf27OH5uNKmvCFcTw+YFoxVEqT4Fz/CSl9Wjbv0=";
2022-08-29 06:33:08 +00:00
# Tests require network access
doCheck = false;
meta = with lib; {
description = "Tool for handling machine-in-the-middle tasks";
homepage = "https://github.com/RedTeamPentesting/pretender";
2023-05-04 13:15:49 +00:00
changelog = "https://github.com/RedTeamPentesting/pretender/releases/tag/v${version}";
2022-08-29 06:33:08 +00:00
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}