mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-29 09:04:17 +00:00
katana: 1.1.1 -> 1.1.2 (#363727)
* katana: 1.1.1 -> 1.1.2 Diff: https://github.com/projectdiscovery/katana/compare/refs/tags/v1.1.1...v1.1.2 Changelog: https://github.com/projectdiscovery/katana/releases/tag/v1.1.2 * katana: format with nixfmt
This commit is contained in:
parent
5b4eab908b
commit
4b5728a2aa
@ -1,24 +1,23 @@
|
|||||||
{ lib
|
{
|
||||||
, buildGoModule
|
lib,
|
||||||
, fetchFromGitHub
|
buildGoModule,
|
||||||
|
fetchFromGitHub,
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildGoModule rec {
|
buildGoModule rec {
|
||||||
pname = "katana";
|
pname = "katana";
|
||||||
version = "1.1.1";
|
version = "1.1.2";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "projectdiscovery";
|
owner = "projectdiscovery";
|
||||||
repo = "katana";
|
repo = "katana";
|
||||||
rev = "refs/tags/v${version}";
|
rev = "refs/tags/v${version}";
|
||||||
hash = "sha256-iE2dqm5ZNAULpEou/OuZ9yKS8xAzBZTkqwnwaoiREpo=";
|
hash = "sha256-cRzLJcX7U9jhKMYnpOyo8S8hN6cIeUYFElcmOqbv0GY=";
|
||||||
};
|
};
|
||||||
|
|
||||||
vendorHash = "sha256-scg8EFKP98vGQPwc3ytGZPYu8D4Re7b/BlvlBCJuSPQ=";
|
vendorHash = "sha256-NaPVrgFbw77kxl2sw1nHhqr1ePn5TYhS2rS0et7qJKs=";
|
||||||
|
|
||||||
subPackages = [
|
subPackages = [ "cmd/katana" ];
|
||||||
"cmd/katana"
|
|
||||||
];
|
|
||||||
|
|
||||||
ldflags = [
|
ldflags = [
|
||||||
"-w"
|
"-w"
|
||||||
@ -27,10 +26,10 @@ buildGoModule rec {
|
|||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Next-generation crawling and spidering framework";
|
description = "Next-generation crawling and spidering framework";
|
||||||
mainProgram = "katana";
|
|
||||||
homepage = "https://github.com/projectdiscovery/katana";
|
homepage = "https://github.com/projectdiscovery/katana";
|
||||||
changelog = "https://github.com/projectdiscovery/katana/releases/tag/v${version}";
|
changelog = "https://github.com/projectdiscovery/katana/releases/tag/v${version}";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
maintainers = with maintainers; [ dit7ya ];
|
maintainers = with maintainers; [ dit7ya ];
|
||||||
|
mainProgram = "katana";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user