c7f94ff3ce
GitOrigin-RevId: b85ed9dcbf187b909ef7964774f8847d554fab3b
31 lines
740 B
Nix
31 lines
740 B
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "gobuster";
|
|
version = "3.6.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "OJ";
|
|
repo = "gobuster";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-LZL9Zje2u0v6iAQinfjflvusV57ys5J5Il6Q7br3Suc=";
|
|
};
|
|
|
|
vendorHash = "sha256-w+G5PsWXhKipjYIHtz633sia+Wg9FSFVpcugEl8fp0E=";
|
|
|
|
ldflags = [
|
|
"-s"
|
|
"-w"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Tool used to brute-force URIs, DNS subdomains, Virtual Host names on target web servers";
|
|
homepage = "https://github.com/OJ/gobuster";
|
|
changelog = "https://github.com/OJ/gobuster/releases/tag/v${version}";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ fab pamplemousse ];
|
|
};
|
|
}
|