Merge pull request #301368 from fabaff/nuclei-bump

nuclei: 3.2.2 -> 3.2.3
This commit is contained in:
Fabian Affolter 2024-04-04 01:39:50 +02:00 committed by GitHub
commit 83d527a81a
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 = "nuclei";
version = "3.2.2";
version = "3.2.3";
src = fetchFromGitHub {
owner = "projectdiscovery";
repo = "nuclei";
rev = "refs/tags/v${version}";
hash = "sha256-eYFHKXB6TSCLPMKiXvuSpt/2B+rbn7VZqoGEHp2vito=";
hash = "sha256-rcFgSblSXQUGu58cLbjGtvVfEa3AJUwkYEcrizqJTwM=";
};
vendorHash = "sha256-s0hspa3fKMHmFPPwB0tCDJoGEH2JpgFUaIbiSQJTtr0=";
vendorHash = "sha256-Ttv25D7GAFjbP25AcRfKPu4wT3SMroAAf3px48IWZLA=";
subPackages = [
"cmd/nuclei/"
];
subPackages = [ "cmd/nuclei/" ];
ldflags = [
"-w"
@ -40,7 +39,10 @@ buildGoModule rec {
homepage = "https://github.com/projectdiscovery/nuclei";
changelog = "https://github.com/projectdiscovery/nuclei/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ fab Misaka13514 ];
maintainers = with maintainers; [
fab
Misaka13514
];
mainProgram = "nuclei";
};
}