nray: init at 1.1.0

Distributed port scanner

https://github.com/nray-scanner/nray
This commit is contained in:
Fabian Affolter 2024-04-24 09:58:54 +02:00
parent 10deeda9c1
commit 1f1b4b79c6
1 changed files with 37 additions and 0 deletions

View File

@ -0,0 +1,37 @@
{
lib,
buildGoModule,
fetchFromGitHub,
}:
buildGoModule rec {
pname = "nray";
version = "1.1.0";
src = fetchFromGitHub {
owner = "nray-scanner";
repo = "nray";
rev = "refs/tags/v${version}";
hash = "sha256-N78Bm/Le+pbA8hvDaUbjQpcdRlM0RKXnXyjOB8Nz3AE=";
};
vendorHash = "sha256-hCFFMSaT73Wx54KayuFc2xJRGp0p10Pn93N8t4Xad8g=";
ldflags = [
"-s"
"-w"
];
env = {
CGO_CFLAGS = "-Wno-undef-prefix";
};
meta = with lib; {
description = "Distributed port scanner";
homepage = "https://github.com/nray-scanner/nray";
changelog = "https://github.com/nray-scanner/nray/releases/tag/v${version}";
license = licenses.gpl3Only;
maintainers = with maintainers; [ fab ];
mainProgram = "nray";
};
}