Merge pull request #107737 from fabaff/gau

gau: init at 1.1.0
This commit is contained in:
Pavol Rusnak 2020-12-27 18:46:01 +01:00 committed by GitHub
commit 3babbb4000
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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

@ -4149,6 +4149,8 @@ in
garmintools = callPackage ../development/libraries/garmintools {};
gau = callPackage ../tools/security/gau { };
gauge = callPackage ../development/tools/gauge { };
gawk = callPackage ../tools/text/gawk {