nixpkgs/pkgs/tools/misc/arp-scan/default.nix

42 lines
1.1 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, autoreconfHook, libpcap, makeWrapper, perlPackages }:
stdenv.mkDerivation rec {
pname = "arp-scan";
version = "1.9.7";
2018-07-04 23:00:13 +00:00
src = fetchFromGitHub {
owner = "royhills";
repo = "arp-scan";
rev = version;
sha256 = "1mf7a4f9vzvnkiavc87aqyciswggsb4fpy7j05jxnvjyyxv3l7gp";
};
2017-12-07 11:12:02 +00:00
perlModules = with perlPackages; [
HTTPDate
HTTPMessage
LWP
2017-12-07 11:12:02 +00:00
URI
];
nativeBuildInputs = [ autoreconfHook makeWrapper ];
buildInputs = [ perlPackages.perl libpcap ];
2017-12-07 11:12:02 +00:00
postInstall = ''
for name in get-{oui,iab}; do
wrapProgram "$out/bin/$name" --set PERL5LIB "${perlPackages.makeFullPerlPath perlModules}"
2017-12-07 11:12:02 +00:00
done;
'';
meta = with 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;
2021-01-28 08:01:35 +00:00
platforms = platforms.linux ++ platforms.darwin;
maintainers = with maintainers; [ bjornfor mikoim r-burns ];
};
}