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

30 lines
652 B
Nix
Raw Normal View History

2020-12-27 17:02:28 +00:00
{ buildGoModule
, fetchFromGitHub
, lib
2020-12-27 17:02:28 +00:00
}:
buildGoModule rec {
pname = "gau";
2021-06-04 21:13:20 +01:00
version = "1.2.0";
2020-12-27 17:02:28 +00:00
src = fetchFromGitHub {
owner = "lc";
repo = pname;
rev = "v${version}";
2021-06-04 21:13:20 +01:00
sha256 = "sha256-hUIUDDP9NtMmJXj5GCD/ISUUcx5prKCVVFztff9txoU=";
2020-12-27 17:02:28 +00:00
};
2021-06-04 21:13:20 +01:00
vendorSha256 = "sha256-WMoFbqtBMcjTWX51mEMzpgDEAndCElldNqjG27yXd2w=";
2020-12-27 17:02:28 +00:00
meta = with lib; {
2020-12-27 17:02:28 +00:00
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 ];
};
}