1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

arp-scan: new package

Arp-scan is a command-line tool that uses the ARP protocol to discover
and fingerprint IP hosts on the local network.

http://www.nta-monitor.com/tools-resources/security-tools/arp-scan
This commit is contained in:
Bjørn Forsman 2014-02-03 12:34:50 +01:00
parent 9dd9e52c0c
commit 34484e65f3
2 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,24 @@
{ stdenv, fetchurl, libpcap }:
stdenv.mkDerivation rec {
name = "arp-scan-1.9";
src = fetchurl {
url = "http://www.nta-monitor.com/files/arp-scan/${name}.tar.gz";
sha256 = "14nqjzbmnlx2nac7lwa93y5m5iqk3layakyxyvfmvs283k3qm46f";
};
buildInputs = [ libpcap ];
meta = with stdenv.lib; {
description = "ARP scanning and fingerprinting tool";
longDescription = ''
Arp-scan is a command-line tool that uses the ARP protocol to discover
and fingerprint IP hosts on the local network.
'';
homepage = http://www.nta-monitor.com/tools-resources/security-tools/arp-scan;
license = licenses.gpl3;
platforms = platforms.linux;
maintainers = [ maintainers.bjornfor ];
};
}

View file

@ -435,6 +435,8 @@ let
argyllcms = callPackage ../tools/graphics/argyllcms {};
arp-scan = callPackage ../tools/misc/arp-scan { };
ascii = callPackage ../tools/text/ascii { };
asymptote = builderDefsPackage ../tools/graphics/asymptote {