python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / security / monsoon / default.nix
blob50860198e76ccc40cc9cbcb13fcef401fcfb13a6
1 { buildGoModule
2 , fetchFromGitHub
3 , lib, stdenv
4 }:
6 buildGoModule rec {
7   pname = "monsoon";
8   version = "0.7.0";
10   src = fetchFromGitHub {
11     owner = "RedTeamPentesting";
12     repo = "monsoon";
13     rev = "v${version}";
14     sha256 = "sha256-eXzD47qFkouYJkqWHbs2g2pbl3I7vWgIU6TqN3MEYQI=";
15   };
17   vendorSha256 = "sha256-tG+qV4Q77wT6x8y5cjZUaAWpL//sMUg1Ce3jS/dXF+Y=";
19   # tests fails on darwin
20   doCheck = !stdenv.isDarwin;
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   };