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

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

30 lines
644 B
Nix
Raw Normal View History

2022-11-12 12:53:06 +00:00
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "katana";
2023-01-18 19:59:30 +00:00
version = "0.0.3";
2022-11-12 12:53:06 +00:00
src = fetchFromGitHub {
owner = "projectdiscovery";
repo = pname;
rev = "v${version}";
2023-01-18 19:59:30 +00:00
sha256 = "sha256-Ax99pmoxlyUGLN2OdIItTNTnO/fDquvNadNnNG6ElEk=";
2022-11-12 12:53:06 +00:00
};
2023-01-18 19:59:30 +00:00
vendorHash = "sha256-IJcMIJF2A5DfyBdcIXTbeX72Q/4SAVZ0U3UIQ2H0fEc=";
2022-11-12 12:53:06 +00:00
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 ];
};
}