monsoon: modernize

- add version and versionCheckHook
- add nix-update-script
This commit is contained in:
Fabian Affolter
2026-07-03 18:41:31 +02:00
parent 2ed6bd1dc6
commit c64c2cf7f3
+19 -2
View File
@@ -3,12 +3,16 @@
stdenv,
buildGoModule,
fetchFromGitHub,
versionCheckHook,
nix-update-script,
}:
buildGoModule (finalAttrs: {
pname = "monsoon";
version = "0.10.1";
__structuredAttrs = true;
src = fetchFromGitHub {
owner = "RedTeamPentesting";
repo = "monsoon";
@@ -18,19 +22,32 @@ buildGoModule (finalAttrs: {
vendorHash = "sha256-hGEUO1sl8IKXo4rkS81Wlf7187lu2PrSujNlGNTLwmE=";
ldflags = [
"-s"
"-X=main.version=v${finalAttrs.version}"
];
nativeInstallCheckInputs = [ versionCheckHook ];
doInstallCheck = true;
versionCheckProgramArg = [ "version" ];
# Tests fails on darwin
doCheck = !stdenv.hostPlatform.isDarwin;
passthru.updateScript = nix-update-script { };
meta = {
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${finalAttrs.version}";
changelog = "https://github.com/RedTeamPentesting/monsoon/releases/tag/v${finalAttrs.src.tag}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
mainProgram = "monsoon";
};
})