forked from mirrors/nixpkgs
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:
parent
9dd9e52c0c
commit
34484e65f3
24
pkgs/tools/misc/arp-scan/default.nix
Normal file
24
pkgs/tools/misc/arp-scan/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue