mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-28 16:43:58 +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
|
||||
, fetchFromGitHub
|
||||
{
|
||||
lib,
|
||||
buildGoModule,
|
||||
fetchFromGitHub,
|
||||
}:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "katana";
|
||||
version = "1.1.1";
|
||||
version = "1.1.2";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "projectdiscovery";
|
||||
repo = "katana";
|
||||
rev = "refs/tags/v${version}";
|
||||
hash = "sha256-iE2dqm5ZNAULpEou/OuZ9yKS8xAzBZTkqwnwaoiREpo=";
|
||||
hash = "sha256-cRzLJcX7U9jhKMYnpOyo8S8hN6cIeUYFElcmOqbv0GY=";
|
||||
};
|
||||
|
||||
vendorHash = "sha256-scg8EFKP98vGQPwc3ytGZPYu8D4Re7b/BlvlBCJuSPQ=";
|
||||
vendorHash = "sha256-NaPVrgFbw77kxl2sw1nHhqr1ePn5TYhS2rS0et7qJKs=";
|
||||
|
||||
subPackages = [
|
||||
"cmd/katana"
|
||||
];
|
||||
subPackages = [ "cmd/katana" ];
|
||||
|
||||
ldflags = [
|
||||
"-w"
|
||||
@ -27,10 +26,10 @@ buildGoModule rec {
|
||||
|
||||
meta = with lib; {
|
||||
description = "Next-generation crawling and spidering framework";
|
||||
mainProgram = "katana";
|
||||
homepage = "https://github.com/projectdiscovery/katana";
|
||||
changelog = "https://github.com/projectdiscovery/katana/releases/tag/v${version}";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ dit7ya ];
|
||||
mainProgram = "katana";
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user