nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at devShellTools-shell 36 lines 716 B view raw
1{ 2 lib, 3 buildGoModule, 4 fetchFromGitHub, 5}: 6 7buildGoModule rec { 8 pname = "gau"; 9 version = "2.2.4"; 10 11 src = fetchFromGitHub { 12 owner = "lc"; 13 repo = "gau"; 14 tag = "v${version}"; 15 hash = "sha256-B2l5joHeFDjYmdb3F1FFDKjIKENZu92O2sMlkf3Sf6Y="; 16 }; 17 18 vendorHash = "sha256-nhsGhuX5AJMHg+zQUt1G1TwVgMCxnuJ2T3uBrx7bJNs="; 19 20 ldflags = [ 21 "-w" 22 "-s" 23 ]; 24 25 meta = with lib; { 26 description = "Tool to fetch known URLs"; 27 longDescription = '' 28 getallurls (gau) fetches known URLs from various sources for any 29 given domain. 30 ''; 31 homepage = "https://github.com/lc/gau"; 32 license = licenses.mit; 33 maintainers = with maintainers; [ fab ]; 34 mainProgram = "gau"; 35 }; 36}