mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
25 lines
721 B
Nix
25 lines
721 B
Nix
{ 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 ];
|
|
};
|
|
}
|