1{ stdenv, fetchurl, libpcap }:
2
3stdenv.mkDerivation rec {
4 name = "arp-scan-1.9";
5
6 src = fetchurl {
7 url = "http://www.nta-monitor.com/files/arp-scan/${name}.tar.gz";
8 sha256 = "14nqjzbmnlx2nac7lwa93y5m5iqk3layakyxyvfmvs283k3qm46f";
9 };
10
11 buildInputs = [ libpcap ];
12
13 meta = with stdenv.lib; {
14 description = "ARP scanning and fingerprinting tool";
15 longDescription = ''
16 Arp-scan is a command-line tool that uses the ARP protocol to discover
17 and fingerprint IP hosts on the local network.
18 '';
19 homepage = http://www.nta-monitor.com/tools-resources/security-tools/arp-scan;
20 license = licenses.gpl3;
21 platforms = platforms.linux;
22 maintainers = [ maintainers.bjornfor ];
23 };
24}