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

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

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";
2022-07-25 07:40:15 +00:00
version = "2.1.2";
2020-12-27 17:02:28 +00:00
src = fetchFromGitHub {
owner = "lc";
repo = pname;
rev = "v${version}";
2022-07-25 07:40:15 +00:00
sha256 = "sha256-z8JmMMob12wRTdpFoVbRHTDwet9AMXet49lHEDVVAnw=";
2020-12-27 17:02:28 +00:00
};
2022-01-31 06:49:44 +00:00
vendorSha256 = "sha256-HQATUCzYvhhlqe4HhNu9H4CqmY2IGLNJ9ydt3/igSmQ=";
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 ];
};
}