at 22.05-pre 29 lines 652 B view raw
1{ buildGoModule 2, fetchFromGitHub 3, lib 4}: 5 6buildGoModule rec { 7 pname = "gau"; 8 version = "2.0.6"; 9 10 src = fetchFromGitHub { 11 owner = "lc"; 12 repo = pname; 13 rev = "v${version}"; 14 sha256 = "sha256-d9Cfd2KD+ymGnzOjlVQkSm3XBamoJIUKQLnRZzSDBtk="; 15 }; 16 17 vendorSha256 = "sha256-u5ketxHPwZN2mV0uTgwJbY+ImusGZ9GTTmFAGvdH5yA="; 18 19 meta = with lib; { 20 description = "Tool to fetch known URLs"; 21 longDescription = '' 22 getallurls (gau) fetches known URLs from various sources for any 23 given domain. 24 ''; 25 homepage = "https://github.com/lc/gau"; 26 license = licenses.mit; 27 maintainers = with maintainers; [ fab ]; 28 }; 29}