mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
Merge pull request #107616 from fabaff/hakrawler
hakrawler: init at 20201224-e39a514
This commit is contained in:
commit
7b596e48b8
2 changed files with 32 additions and 0 deletions
30
pkgs/tools/security/hakrawler/default.nix
Normal file
30
pkgs/tools/security/hakrawler/default.nix
Normal file
|
@ -0,0 +1,30 @@
|
||||||
|
{ buildGoModule
|
||||||
|
, fetchFromGitHub
|
||||||
|
, lib
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildGoModule rec {
|
||||||
|
pname = "hakrawler";
|
||||||
|
version = "20201224-${lib.strings.substring 0 7 rev}";
|
||||||
|
rev = "e39a514d0e179d33362ee244c017fb65cc2c12a5";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "hakluke";
|
||||||
|
repo = "hakrawler";
|
||||||
|
inherit rev;
|
||||||
|
sha256 = "0wpqfbpgnr94q5n7i4zh806k8n0phyg0ncnz43hqh4bbdh7l1y8a";
|
||||||
|
};
|
||||||
|
|
||||||
|
vendorSha256 = "18zs2l77ds0a3wxfqcd91h269g0agnwhginrx3j6gj30dbfls8a1";
|
||||||
|
|
||||||
|
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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -1287,6 +1287,8 @@ in
|
||||||
|
|
||||||
google-amber = callPackage ../tools/graphics/amber { };
|
google-amber = callPackage ../tools/graphics/amber { };
|
||||||
|
|
||||||
|
hakrawler = callPackage ../tools/security/hakrawler { };
|
||||||
|
|
||||||
hime = callPackage ../tools/inputmethods/hime {};
|
hime = callPackage ../tools/inputmethods/hime {};
|
||||||
|
|
||||||
hostctl = callPackage ../tools/system/hostctl { };
|
hostctl = callPackage ../tools/system/hostctl { };
|
||||||
|
|
Loading…
Reference in a new issue