1{ buildGoModule
2, fetchFromGitHub
3, lib, stdenv
4}:
5
6buildGoModule rec {
7 pname = "monsoon";
8 version = "0.7.0";
9
10 src = fetchFromGitHub {
11 owner = "RedTeamPentesting";
12 repo = "monsoon";
13 rev = "v${version}";
14 sha256 = "sha256-eXzD47qFkouYJkqWHbs2g2pbl3I7vWgIU6TqN3MEYQI=";
15 };
16
17 vendorSha256 = "sha256-tG+qV4Q77wT6x8y5cjZUaAWpL//sMUg1Ce3jS/dXF+Y=";
18
19 # tests fails on darwin
20 doCheck = !stdenv.isDarwin;
21
22 meta = with lib; {
23 description = "Fast HTTP enumerator";
24 longDescription = ''
25 A fast HTTP enumerator that allows you to execute a large number of HTTP
26 requests, filter the responses and display them in real-time.
27 '';
28 homepage = "https://github.com/RedTeamPentesting/monsoon";
29 license = licenses.mit;
30 maintainers = with maintainers; [ fab ];
31 };
32}