nuclei: use nixfmt

This commit is contained in:
Fabian Affolter
2024-04-03 23:58:07 +02:00
parent 1bf9803a7d
commit 8fbac90417
+9 -7
View File
@@ -1,6 +1,7 @@
{ lib
, buildGoModule
, fetchFromGitHub
{
lib,
buildGoModule,
fetchFromGitHub,
}:
buildGoModule rec {
@@ -16,9 +17,7 @@ buildGoModule rec {
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";
};
}