Merge pull request #200853 from dit7ya/katana

katana: init at 0.0.2
This commit is contained in:
Fabian Affolter 2022-11-12 14:45:36 +01:00 committed by GitHub
commit 04dd0688bb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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 {