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 07:33:08 +01:00
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "pretender";
2023-05-04 07:21:00 +01:00
version = "1.1.0";
2022-08-29 07:33:08 +01:00
src = fetchFromGitHub {
owner = "RedTeamPentesting";
repo = pname;
2023-05-04 14:15:49 +01:00
rev = "refs/tags/v${version}";
hash = "sha256-iWAejgI/q1lh8daybPItzQA91Ayg3ZgddGFXWm3cuww=";
2022-08-29 07:33:08 +01:00
};
2023-05-04 07:21:00 +01:00
vendorHash = "sha256-uw3mpf27OH5uNKmvCFcTw+YFoxVEqT4Fz/CSl9Wjbv0=";
2022-08-29 07:33:08 +01: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 14:15:49 +01:00
changelog = "https://github.com/RedTeamPentesting/pretender/releases/tag/v${version}";
2022-08-29 07:33:08 +01:00
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}