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

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

35 lines
907 B
Nix
Raw Normal View History

2023-07-17 18:43:59 +00:00
{ lib
, stdenv
, buildGoModule
2021-01-02 10:48:41 +00:00
, fetchFromGitHub
}:
buildGoModule rec {
pname = "monsoon";
2023-07-17 10:06:20 +00:00
version = "0.8.0";
2021-01-02 10:48:41 +00:00
src = fetchFromGitHub {
owner = "RedTeamPentesting";
repo = "monsoon";
2023-07-18 07:32:00 +00:00
rev = "refs/tags/v${version}";
2023-07-17 18:43:59 +00:00
hash = "sha256-7cfy8dYhiReFVz10wui3qqxlXOX7wheREkvSnj2KyOw=";
2021-01-02 10:48:41 +00:00
};
2023-07-17 10:06:20 +00:00
vendorHash = "sha256-SZDX61iPwT/mfxJ+n2nlvzgEvUu6h3wVkmeqZtxQ9KE=";
2021-01-02 10:48:41 +00:00
2023-07-17 18:43:59 +00:00
# Tests fails on darwin
2021-01-02 10:48:41 +00:00
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";
2023-07-17 18:43:59 +00:00
changelog = "https://github.com/RedTeamPentesting/monsoon/releases/tag/v${version}";
2021-01-02 10:48:41 +00:00
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}