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:
Fabian Affolter 2024-12-10 04:19:08 +01:00 committed by GitHub
parent 5b4eab908b
commit 4b5728a2aa
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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";
};
}