about summary refs log tree commit diff
path: root/pkgs/tools/misc/arp-scan/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools/misc/arp-scan/default.nix')
-rw-r--r--pkgs/tools/misc/arp-scan/default.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/pkgs/tools/misc/arp-scan/default.nix b/pkgs/tools/misc/arp-scan/default.nix
new file mode 100644
index 000000000000..f8adedc7c241
--- /dev/null
+++ b/pkgs/tools/misc/arp-scan/default.nix
@@ -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 ];
+  };
+}