katana: init at 0.0.2

This commit is contained in:
Mostly Void 2022-11-12 18:23:06 +05:30
parent 8fb7b99c41
commit f04d46aca9
No known key found for this signature in database
GPG key ID: E2B7342D0CAA82C2
2 changed files with 31 additions and 0 deletions

View file

@ -0,0 +1,29 @@
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "katana";
version = "0.0.2";
src = fetchFromGitHub {
owner = "projectdiscovery";
repo = pname;
rev = "v${version}";
sha256 = "sha256-8OpBxv++AjKNitHqB6y8hN8LlkFBvyzooJZPWhHd28w=";
};
vendorSha256 = "sha256-jc8OcImVOmN/iYbcYQJ9Z2cYaNAVVdn9nKWBSuyh2HQ=";
CGO_ENABLED = 0;
subPackages = [ "cmd/katana" ];
meta = with lib; {
description = "A next-generation crawling and spidering framework";
homepage = "https://github.com/projectdiscovery/katana";
license = licenses.mit;
maintainers = with maintainers; [ dit7ya ];
};
}

View file

@ -8314,6 +8314,8 @@ with pkgs;
kakoune-cr = callPackage ../tools/misc/kakoune-cr { };
katana = callPackage ../tools/security/katana { };
kbdd = callPackage ../applications/window-managers/kbdd { };
kbs2 = callPackage ../tools/security/kbs2 {