mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-01 19:33:03 +00:00
4aaa783d40
Diff: https://github.com/projectdiscovery/nuclei-templates/compare/refs/tags/v9.9.3...v9.9.4 Changelog: https://github.com/projectdiscovery/nuclei-templates/releases/tag/v9.9.4
37 lines
953 B
Nix
37 lines
953 B
Nix
{
|
|
lib,
|
|
stdenvNoCC,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
stdenvNoCC.mkDerivation rec {
|
|
pname = "nuclei-templates";
|
|
version = "9.9.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "projectdiscovery";
|
|
repo = "nuclei-templates";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-1o9FvE8wuvswTXbVncTr77p7oWg0c2bVQQZvOxsgxFw=";
|
|
};
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
mkdir -p $out/share/nuclei-templates
|
|
cp -R cloud code dast dns file headless helpers http javascript network profiles ssl \
|
|
$out/share/nuclei-templates/
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Templates for the nuclei engine to find security vulnerabilities";
|
|
homepage = "https://github.com/projectdiscovery/nuclei-templates";
|
|
changelog = "https://github.com/projectdiscovery/nuclei-templates/releases/tag/v${version}";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ fab ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|