3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/security/naabu/default.nix

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

43 lines
987 B
Nix
Raw Normal View History

2021-10-12 23:06:58 +01:00
{ lib
, buildGoModule
2020-12-26 23:43:52 +00:00
, fetchFromGitHub
, libpcap
}:
buildGoModule rec {
pname = "naabu";
2022-05-10 22:25:52 +01:00
version = "2.0.7";
2020-12-26 23:43:52 +00:00
src = fetchFromGitHub {
owner = "projectdiscovery";
repo = "naabu";
rev = "v${version}";
2022-05-10 22:25:52 +01:00
sha256 = "sha256-pfaK2Hj6iHk8njEMEbeSHGIKTn5O3IF83At14iDNI34=";
2020-12-26 23:43:52 +00:00
};
2022-05-10 22:25:52 +01:00
vendorSha256 = "sha256-eco1e1A0cDk1Yc0KP9tc3Kf4E+z1av7EDHynVhoHhMk=";
2020-12-26 23:43:52 +00:00
2021-10-12 23:06:58 +01:00
buildInputs = [
libpcap
];
2020-12-26 23:43:52 +00:00
2021-10-12 23:06:58 +01:00
modRoot = "./v2";
subPackages = [
"cmd/naabu/"
];
2020-12-26 23:43:52 +00:00
meta = with lib; {
description = "Fast SYN/CONNECT port scanner";
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";
license = licenses.asl20;
maintainers = with maintainers; [ fab ];
};
}