biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / security / hakrawler / default.nix
blob58481390f2cc8412ca667a7434aa9bf9a5f1d445
1 { lib
2 , buildGoModule
3 , fetchFromGitHub
4 }:
6 buildGoModule rec {
7   pname = "hakrawler";
8   version = "2.1";
10   src = fetchFromGitHub {
11     owner = "hakluke";
12     repo = "hakrawler";
13     rev = version;
14     hash = "sha256-ZJG5KlIlzaztG27NoSlILj0I94cm2xZq28qx1ebrSmc=";
15   };
17   vendorHash = "sha256-NzgFwPvuEZ2/Ks5dZNRJjzzCNPRGelQP/A6eZltqkmM=";
19   meta = with lib; {
20     description = "Web crawler for the discovery of endpoints and assets";
21     mainProgram = "hakrawler";
22     homepage = "https://github.com/hakluke/hakrawler";
23     longDescription =  ''
24       Simple, fast web crawler designed for easy, quick discovery of endpoints
25       and assets within a web application.
26     '';
27     license = licenses.mit;
28     maintainers = with maintainers; [ fab ];
29   };