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

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

26 lines
613 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";
2022-11-02 23:24:11 +00:00
version = "3.3.0";
2019-12-20 09:28:15 +00:00
src = fetchFromGitHub {
owner = "OJ";
repo = "gobuster";
rev = "v${version}";
2022-11-02 23:24:11 +00:00
hash = "sha256-bh48TAhK0HwwNvE5Fr4KtCI+Nz1Wb9vaV916RzGG8/I=";
2019-12-20 09:28:15 +00:00
};
2022-11-02 23:24:11 +00:00
vendorHash = "sha256-fuz9Sj/wKJWp7Q/g5LBb44a50QKGMCPHJ38TBhTCn00=";
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";
license = licenses.asl20;
maintainers = with maintainers; [ pamplemousse ];
};
}