Unverified Commit 99970cfc authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

nuclei: 3.6.2 -> 3.7.0 (#484737)

parents 1c1a54fd 1605a325
Loading
Loading
Loading
Loading
+7 −7
Original line number Diff line number Diff line
@@ -5,18 +5,18 @@
  versionCheckHook,
}:

buildGoModule rec {
buildGoModule (finalAttrs: {
  pname = "nuclei";
  version = "3.6.2";
  version = "3.7.0";

  src = fetchFromGitHub {
    owner = "projectdiscovery";
    repo = "nuclei";
    tag = "v${version}";
    hash = "sha256-cWfX1W9foaCmqH17RDNHq38SYbl9enzZmyYZKkHz36k=";
    tag = "v${finalAttrs.version}";
    hash = "sha256-MAOyMpcJsw4O+oC3IhEBF1XR6KSLBHhYZDnmNnwX4mo=";
  };

  vendorHash = "sha256-yXXjYsLO3jQI0fS7f5LG/KTVpRg+ROc0DPUVYdNOW8I=";
  vendorHash = "sha256-XaRcVKFgsQnPngqmp7QIcx2jV7h51EafNlZjSd9lUIE=";

  proxyVendor = true; # hash mismatch between Linux and Darwin

@@ -46,7 +46,7 @@ buildGoModule rec {
      CVEs across targets that are known and easily detectable.
    '';
    homepage = "https://github.com/projectdiscovery/nuclei";
    changelog = "https://github.com/projectdiscovery/nuclei/releases/tag/v${version}";
    changelog = "https://github.com/projectdiscovery/nuclei/releases/tag/${finalAttrs.src.tag}";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [
      fab
@@ -54,4 +54,4 @@ buildGoModule rec {
    ];
    mainProgram = "nuclei";
  };
}
})