Skip to content

Commit

Permalink
Merge pull request #116551 from fabaff/bump-nuclei
Browse files Browse the repository at this point in the history
nuclei: 2.2.0 -> 2.3.1
  • Loading branch information
SuperSandro2000 committed Mar 18, 2021
2 parents 0408ccf + f31aa02 commit 92b94d1
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions pkgs/tools/security/nuclei/default.nix
Original file line number Diff line number Diff line change
@@ -1,25 +1,28 @@
{ buildGoModule
{ lib
, buildGoModule
, fetchFromGitHub
, lib
}:

buildGoModule rec {
pname = "nuclei";
version = "2.2.0";
version = "2.3.1";

src = fetchFromGitHub {
owner = "projectdiscovery";
repo = "nuclei";
repo = pname;
rev = "v${version}";
sha256 = "0xrvza86aczlnb11x58fiqch5g0q6gvpxwsi5dq3akfi95gk3a3x";
sha256 = "sha256-NM/Ggd5MKctQKE0MNawyE+Xciuj9++6DXXkMrrpfkhA=";
};

vendorSha256 = "1v3ax8l1lgp2vs50gsa2fhdd6bvyfdlkd118akrqmwxahyyyqycv";
vendorSha256 = "sha256-h+MuMfIKXgXzLU6hNMxfPXawic9UZrwzVlzjjRF7X3o=";

preBuild = ''
mv v2/* .
'';

# Test files are not part of the release tarball
doCheck = false;

meta = with lib; {
description = "Tool for configurable targeted scanning";
longDescription = ''
Expand Down

0 comments on commit 92b94d1

Please sign in to comment.