mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-18 19:03:28 +00:00
Merge pull request #301368 from fabaff/nuclei-bump
nuclei: 3.2.2 -> 3.2.3
This commit is contained in:
commit
83d527a81a
@ -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";
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user