mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 21:03:15 +00:00
30 lines
650 B
Nix
30 lines
650 B
Nix
{ buildGoModule
|
|
, fetchFromGitHub
|
|
, lib
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "gau";
|
|
version = "2.2.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "lc";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-09Mf6KmTO3gper7txhvPZ/lb/cFOTDWicpu7+JrNrbo=";
|
|
};
|
|
|
|
vendorHash = "sha256-nhsGhuX5AJMHg+zQUt1G1TwVgMCxnuJ2T3uBrx7bJNs=";
|
|
|
|
meta = with 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 ];
|
|
};
|
|
}
|