nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 lib,
3 buildGoModule,
4 fetchFromGitHub,
5}:
6
7buildGoModule rec {
8 pname = "hakrawler";
9 version = "2.1";
10
11 src = fetchFromGitHub {
12 owner = "hakluke";
13 repo = "hakrawler";
14 rev = version;
15 hash = "sha256-ZJG5KlIlzaztG27NoSlILj0I94cm2xZq28qx1ebrSmc=";
16 };
17
18 vendorHash = "sha256-NzgFwPvuEZ2/Ks5dZNRJjzzCNPRGelQP/A6eZltqkmM=";
19
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 };
31}