about summary refs log tree commit diff
path: root/pkgs/tools/misc/arp-scan/default.nix
blob: 760757190c328895d0f08e741a8849635067a9e8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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/wiki/index.php/Arp-scan_Documentation;
    license = licenses.gpl3;
    platforms = platforms.linux;
    maintainers = [ maintainers.bjornfor ];
  };
}