sof-firmware: 2024.09.2 -> 2025.01 (#378401)
[NixPkgs.git] / pkgs / by-name / ha / hakrawler / package.nix
blob61ba00d2c06bd9283bddd537108995799af1bd57
2   lib,
3   buildGoModule,
4   fetchFromGitHub,
5 }:
7 buildGoModule rec {
8   pname = "hakrawler";
9   version = "2.1";
11   src = fetchFromGitHub {
12     owner = "hakluke";
13     repo = "hakrawler";
14     rev = version;
15     hash = "sha256-ZJG5KlIlzaztG27NoSlILj0I94cm2xZq28qx1ebrSmc=";
16   };
18   vendorHash = "sha256-NzgFwPvuEZ2/Ks5dZNRJjzzCNPRGelQP/A6eZltqkmM=";
20   meta = with lib; {
21     description = "Web crawler for the discovery of endpoints and assets";
22     mainProgram = "hakrawler";
23     homepage = "https://github.com/hakluke/hakrawler";
24     longDescription = ''
25       Simple, fast web crawler designed for easy, quick discovery of endpoints
26       and assets within a web application.
27     '';
28     license = licenses.mit;
29     maintainers = with maintainers; [ fab ];
30   };