nixpkgs/pkgs/tools/security/naabu/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

50 lines
1.1 KiB
Nix
Raw Normal View History

2021-10-12 22:06:58 +00:00
{ lib
, buildGoModule
2020-12-26 23:43:52 +00:00
, fetchFromGitHub
, libpcap
}:
buildGoModule rec {
pname = "naabu";
2024-05-09 17:43:05 +00:00
version = "2.3.1";
2020-12-26 23:43:52 +00:00
src = fetchFromGitHub {
owner = "projectdiscovery";
repo = "naabu";
2023-02-26 11:42:04 +00:00
rev = "refs/tags/v${version}";
2024-05-09 17:43:05 +00:00
hash = "sha256-BICNSizc5DD538ZUoRUC1jSDCEkyrh7iYOM4a6cBqkQ=";
2020-12-26 23:43:52 +00:00
};
2024-05-09 17:43:05 +00:00
vendorHash = "sha256-GhnEjlV6b61VH/eswBQ9Lelc0IgGawjDRZHzGt7653Q=";
2020-12-26 23:43:52 +00:00
2021-10-12 22:06:58 +00:00
buildInputs = [
libpcap
];
2020-12-26 23:43:52 +00:00
2021-10-12 22:06:58 +00:00
modRoot = "./v2";
subPackages = [
"cmd/naabu/"
];
2020-12-26 23:43:52 +00:00
2024-01-21 08:28:19 +00:00
ldflags = [
"-w"
"-s"
];
2020-12-26 23:43:52 +00:00
meta = with lib; {
description = "Fast SYN/CONNECT port scanner";
mainProgram = "naabu";
2020-12-26 23:43:52 +00:00
longDescription = ''
Naabu is a port scanning tool written in Go that allows you to enumerate
valid ports for hosts in a fast and reliable manner. It is a really simple
tool that does fast SYN/CONNECT scans on the host/list of hosts and lists
all ports that return a reply.
'';
homepage = "https://github.com/projectdiscovery/naabu";
2023-02-26 11:42:04 +00:00
changelog = "https://github.com/projectdiscovery/naabu/releases/tag/v${version}";
2020-12-26 23:43:52 +00:00
license = licenses.asl20;
maintainers = with maintainers; [ fab ];
};
}