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

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

37 lines
726 B
Nix
Raw Normal View History

2024-05-15 10:23:31 +03:00
{
lib,
buildGoModule,
fetchFromGitHub,
2020-12-27 20:02:28 +03:00
}:
buildGoModule rec {
pname = "gau";
2024-05-15 05:33:03 +03:00
version = "2.2.3";
2020-12-27 20:02:28 +03:00
src = fetchFromGitHub {
owner = "lc";
2024-05-15 10:23:15 +03:00
repo = "gau";
rev = "refs/tags/v${version}";
hash = "sha256-1sF33uat6nwtTaXbZzO8YF4jewyQJ6HvI2l/zyTrJsg=";
2020-12-27 20:02:28 +03:00
};
2023-10-24 13:45:02 +03:00
vendorHash = "sha256-nhsGhuX5AJMHg+zQUt1G1TwVgMCxnuJ2T3uBrx7bJNs=";
2020-12-27 20:02:28 +03:00
2024-05-15 10:23:15 +03:00
ldflags = [
"-w"
"-s"
];
meta = with lib; {
2020-12-27 20:02:28 +03: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 ];
2024-05-15 10:23:15 +03:00
mainProgram = "gau";
2020-12-27 20:02:28 +03:00
};
}