nixpkgs/pkgs/tools/security/monsoon/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

33 lines
811 B
Nix
Raw Normal View History

2021-01-02 10:48:41 +00:00
{ buildGoModule
, fetchFromGitHub
2021-01-15 09:19:50 +00:00
, lib, stdenv
2021-01-02 10:48:41 +00:00
}:
buildGoModule rec {
pname = "monsoon";
2022-07-29 01:06:13 +00:00
version = "0.7.0";
2021-01-02 10:48:41 +00:00
src = fetchFromGitHub {
owner = "RedTeamPentesting";
repo = "monsoon";
rev = "v${version}";
2022-07-29 01:06:13 +00:00
sha256 = "sha256-eXzD47qFkouYJkqWHbs2g2pbl3I7vWgIU6TqN3MEYQI=";
2021-01-02 10:48:41 +00:00
};
2022-07-29 01:06:13 +00:00
vendorSha256 = "sha256-tG+qV4Q77wT6x8y5cjZUaAWpL//sMUg1Ce3jS/dXF+Y=";
2021-01-02 10:48:41 +00:00
# tests fails on darwin
doCheck = !stdenv.isDarwin;
2021-01-15 09:19:50 +00:00
meta = with lib; {
2021-01-02 10:48:41 +00:00
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";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}