gobuster: 3.8.1 -> 3.8.2 (#442461)

This commit is contained in:
Fabian Affolter
2025-09-14 11:01:50 +00:00
committed by GitHub
+9 -7
View File
@@ -1,21 +1,23 @@
{
lib,
buildGoModule,
buildGo125Module,
fetchFromGitHub,
}:
buildGoModule rec {
buildGo125Module rec {
pname = "gobuster";
version = "3.8.1";
version = "3.8.2";
src = fetchFromGitHub {
owner = "OJ";
repo = "gobuster";
tag = "v${version}";
hash = "sha256-ddTu13jbleylrcas93pGL98d0mE+2HNlPCVO+0iCP/4=";
hash = "sha256-/woa0w/+aa1S2+Om5EK8I1XEI1mI47vNS1+GDnQHlTA=";
};
vendorHash = "sha256-h/ZJeHk0J8qOC/ZWw6gaHwy5mIE7RuZulITbhTpQJi8=";
__darwinAllowLocalNetworking = true;
vendorHash = "sha256-rTN8omPTfSVfp/ythGWxVyq6rR7tJCN2znwMGixiw90=";
ldflags = [
"-s"
@@ -24,13 +26,13 @@ buildGoModule rec {
meta = {
description = "Tool used to brute-force URIs, DNS subdomains, Virtual Host names on target web servers";
mainProgram = "gobuster";
homepage = "https://github.com/OJ/gobuster";
changelog = "https://github.com/OJ/gobuster/releases/tag/v${version}";
changelog = "https://github.com/OJ/gobuster/releases/tag/${src.tag}";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [
fab
pamplemousse
];
mainProgram = "gobuster";
};
}