nixpkgs/pkgs/by-name/mo/monsoon/package.nix
2025-04-23 02:15:12 +00:00

37 lines
946 B
Nix

{
lib,
stdenv,
buildGoModule,
fetchFromGitHub,
}:
buildGoModule rec {
pname = "monsoon";
version = "0.10.1";
src = fetchFromGitHub {
owner = "RedTeamPentesting";
repo = "monsoon";
tag = "v${version}";
hash = "sha256-vgwoW7jrcLVHDm1cYrIpFcfrgKImCAVOtHg8lMQ6aic=";
};
vendorHash = "sha256-hGEUO1sl8IKXo4rkS81Wlf7187lu2PrSujNlGNTLwmE=";
# Tests fails on darwin
doCheck = !stdenv.hostPlatform.isDarwin;
meta = with lib; {
description = "Fast HTTP enumerator";
mainProgram = "monsoon";
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 ];
};
}