lol
1{ lib
2, buildGoModule
3, fetchFromGitHub
4}:
5
6buildGoModule rec {
7 pname = "gobuster";
8 version = "3.3.0";
9
10 src = fetchFromGitHub {
11 owner = "OJ";
12 repo = "gobuster";
13 rev = "v${version}";
14 hash = "sha256-bh48TAhK0HwwNvE5Fr4KtCI+Nz1Wb9vaV916RzGG8/I=";
15 };
16
17 vendorHash = "sha256-fuz9Sj/wKJWp7Q/g5LBb44a50QKGMCPHJ38TBhTCn00=";
18
19 meta = with lib; {
20 description = "Tool used to brute-force URIs, DNS subdomains, Virtual Host names on target web servers";
21 homepage = "https://github.com/OJ/gobuster";
22 license = licenses.asl20;
23 maintainers = with maintainers; [ pamplemousse ];
24 };
25}