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

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

27 lines
688 B
Nix
Raw Normal View History

2022-10-15 06:58:44 +00:00
{ lib
, buildGoModule
2019-12-20 09:28:15 +00:00
, fetchFromGitHub
}:
buildGoModule rec {
pname = "gobuster";
2023-02-25 20:54:01 +00:00
version = "3.5.0";
2019-12-20 09:28:15 +00:00
src = fetchFromGitHub {
owner = "OJ";
repo = "gobuster";
rev = "v${version}";
2023-02-25 20:54:01 +00:00
hash = "sha256-Ohv/FgMbniItbrcrncAe9QKVjrhxoZ80BGYJmJtJpPk=";
2019-12-20 09:28:15 +00:00
};
2023-02-25 20:54:01 +00:00
vendorHash = "sha256-ZbY5PyXKcTB9spVGfW2Qhj8SV9alOSH0DyXx1dh/NgQ=";
2019-12-20 09:28:15 +00:00
meta = with lib; {
2019-12-20 09:28:15 +00:00
description = "Tool used to brute-force URIs, DNS subdomains, Virtual Host names on target web servers";
homepage = "https://github.com/OJ/gobuster";
2022-12-20 09:06:07 +00:00
changelog = "https://github.com/OJ/gobuster/releases/tag/v${version}";
2019-12-20 09:28:15 +00:00
license = licenses.asl20;
maintainers = with maintainers; [ pamplemousse ];
};
}