gau: init at 1.1.0
This commit is contained in:
parent
c7f75838c3
commit
ccffd3af9d
29
pkgs/tools/security/gau/default.nix
Normal file
29
pkgs/tools/security/gau/default.nix
Normal file
@ -0,0 +1,29 @@
|
||||
{ buildGoModule
|
||||
, fetchFromGitHub
|
||||
, stdenv
|
||||
}:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "gau";
|
||||
version = "1.1.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "lc";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "1srbql603vvlxc6p1ibw0982icdq9kcr1iamxlr8bmgldbm8215w";
|
||||
};
|
||||
|
||||
vendorSha256 = "17ag2wvaxv2dyx3yx3fvlf36ww4a44660pn4gvpbrwacsan9as5s";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Tool to fetch known URLs";
|
||||
longDescription = ''
|
||||
getallurls (gau) fetches known URLs from various sources for any
|
||||
given domain.
|
||||
'';
|
||||
homepage = "https://github.com/lc/gau";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
@ -4147,6 +4147,8 @@ in
|
||||
|
||||
garmintools = callPackage ../development/libraries/garmintools {};
|
||||
|
||||
gau = callPackage ../tools/security/gau { };
|
||||
|
||||
gauge = callPackage ../development/tools/gauge { };
|
||||
|
||||
gawk = callPackage ../tools/text/gawk {
|
||||
|
Loading…
Reference in New Issue
Block a user