2017-12-07 12:12:02 +01:00
|
|
|
{ stdenv, fetchFromGitHub, autoreconfHook, libpcap, makeWrapper, perlPackages }:
|
2014-02-03 12:34:50 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-07-05 01:00:13 +02:00
|
|
|
name = "arp-scan-${version}";
|
|
|
|
version = "1.9.5";
|
2014-02-03 12:34:50 +01:00
|
|
|
|
2018-07-05 01:00:13 +02:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "royhills";
|
|
|
|
repo = "arp-scan";
|
|
|
|
rev = "4de863c2627a05177eda7159692a588f9f520cd1";
|
|
|
|
sha256 = "15zpfdybk2kh98shqs8qqd0f9nyi2ch2wcyv729rfj7yp0hif5mb";
|
2014-02-03 12:34:50 +01:00
|
|
|
};
|
|
|
|
|
2017-12-07 12:12:02 +01:00
|
|
|
perlModules = with perlPackages; [
|
|
|
|
HTTPDate
|
|
|
|
HTTPMessage
|
2018-07-22 04:03:24 +02:00
|
|
|
LWP
|
2017-12-07 12:12:02 +01:00
|
|
|
URI
|
|
|
|
];
|
|
|
|
|
2018-07-05 01:00:13 +02:00
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
2017-12-07 12:12:02 +01:00
|
|
|
buildInputs = [ libpcap makeWrapper ];
|
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
for name in get-{oui,iab}; do
|
2018-12-15 04:50:31 +01:00
|
|
|
wrapProgram "$out/bin/$name" --set PERL5LIB "${perlPackages.makePerlPath perlModules }"
|
2017-12-07 12:12:02 +01:00
|
|
|
done;
|
|
|
|
'';
|
2014-02-03 12:34:50 +01:00
|
|
|
|
|
|
|
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.
|
|
|
|
'';
|
2017-10-26 23:40:38 +02:00
|
|
|
homepage = http://www.nta-monitor.com/wiki/index.php/Arp-scan_Documentation;
|
2014-02-03 12:34:50 +01:00
|
|
|
license = licenses.gpl3;
|
|
|
|
platforms = platforms.linux;
|
2018-07-05 01:00:13 +02:00
|
|
|
maintainers = with maintainers; [ bjornfor mikoim ];
|
2014-02-03 12:34:50 +01:00
|
|
|
};
|
|
|
|
}
|