mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-14 15:36:47 +03:00
katana: init at 0.0.2
This commit is contained in:
parent
8fb7b99c41
commit
f04d46aca9
29
pkgs/tools/security/katana/default.nix
Normal file
29
pkgs/tools/security/katana/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user