gau: init at 1.1.0

This commit is contained in:
Fabian Affolter 2020-12-27 18:02:28 +01:00
parent c7f75838c3
commit ccffd3af9d
2 changed files with 31 additions and 0 deletions

View 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 ];
};
}

View File

@ -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 {