at 23.11-beta 29 lines 729 B view raw
1{ lib 2, buildGoModule 3, fetchFromGitHub 4}: 5 6buildGoModule rec { 7 pname = "hakrawler"; 8 version = "2.1"; 9 10 src = fetchFromGitHub { 11 owner = "hakluke"; 12 repo = "hakrawler"; 13 rev = version; 14 hash = "sha256-ZJG5KlIlzaztG27NoSlILj0I94cm2xZq28qx1ebrSmc="; 15 }; 16 17 vendorHash = "sha256-NzgFwPvuEZ2/Ks5dZNRJjzzCNPRGelQP/A6eZltqkmM="; 18 19 meta = with lib; { 20 description = "Web crawler for the discovery of endpoints and assets"; 21 homepage = "https://github.com/hakluke/hakrawler"; 22 longDescription = '' 23 Simple, fast web crawler designed for easy, quick discovery of endpoints 24 and assets within a web application. 25 ''; 26 license = licenses.mit; 27 maintainers = with maintainers; [ fab ]; 28 }; 29}