depot/third_party/nixpkgs/pkgs/tools/security/monsoon/default.nix
Default email 5e9e1146e1 Project import generated by Copybara.
GitOrigin-RevId: 18036c0be90f4e308ae3ebcab0e14aae0336fe42
2023-08-05 00:07:22 +02:00

34 lines
907 B
Nix

{ lib
, stdenv
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "monsoon";
version = "0.8.0";
src = fetchFromGitHub {
owner = "RedTeamPentesting";
repo = "monsoon";
rev = "refs/tags/v${version}";
hash = "sha256-7cfy8dYhiReFVz10wui3qqxlXOX7wheREkvSnj2KyOw=";
};
vendorHash = "sha256-SZDX61iPwT/mfxJ+n2nlvzgEvUu6h3wVkmeqZtxQ9KE=";
# Tests fails on darwin
doCheck = !stdenv.isDarwin;
meta = with lib; {
description = "Fast HTTP enumerator";
longDescription = ''
A fast HTTP enumerator that allows you to execute a large number of HTTP
requests, filter the responses and display them in real-time.
'';
homepage = "https://github.com/RedTeamPentesting/monsoon";
changelog = "https://github.com/RedTeamPentesting/monsoon/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}