nixpkgs/pkgs/tools/security/hakrawler/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
731 B
Nix
Raw Normal View History

2022-07-26 07:07:25 +00:00
{ lib
, buildGoModule
2021-01-12 20:43:05 +00:00
, fetchFromGitHub
}:
buildGoModule rec {
pname = "hakrawler";
2022-07-26 07:07:25 +00:00
version = "2.1";
2021-01-12 20:43:05 +00:00
src = fetchFromGitHub {
owner = "hakluke";
repo = "hakrawler";
2021-08-21 23:35:28 +00:00
rev = version;
2022-07-26 07:07:25 +00:00
hash = "sha256-ZJG5KlIlzaztG27NoSlILj0I94cm2xZq28qx1ebrSmc=";
2021-01-12 20:43:05 +00:00
};
2022-07-26 07:07:25 +00:00
vendorSha256 = "sha256-NzgFwPvuEZ2/Ks5dZNRJjzzCNPRGelQP/A6eZltqkmM=";
2021-01-12 20:43:05 +00:00
meta = with lib; {
description = "Web crawler for the discovery of endpoints and assets";
homepage = "https://github.com/hakluke/hakrawler";
longDescription = ''
Simple, fast web crawler designed for easy, quick discovery of endpoints
and assets within a web application.
'';
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}