2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, autoreconfHook, libpcap, makeWrapper, perlPackages }:
|
2014-02-03 11:34:50 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "arp-scan";
|
2019-12-12 19:27:29 +00:00
|
|
|
version = "1.9.7";
|
2014-02-03 11:34:50 +00:00
|
|
|
|
2018-07-05 00:00:13 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "royhills";
|
|
|
|
repo = "arp-scan";
|
2019-12-12 19:27:29 +00:00
|
|
|
rev = version;
|
|
|
|
sha256 = "1mf7a4f9vzvnkiavc87aqyciswggsb4fpy7j05jxnvjyyxv3l7gp";
|
2014-02-03 11:34:50 +00:00
|
|
|
};
|
|
|
|
|
2017-12-07 11:12:02 +00:00
|
|
|
perlModules = with perlPackages; [
|
|
|
|
HTTPDate
|
|
|
|
HTTPMessage
|
2018-07-22 03:03:24 +01:00
|
|
|
LWP
|
2017-12-07 11:12:02 +00:00
|
|
|
URI
|
|
|
|
];
|
|
|
|
|
2021-02-07 09:17:39 +00:00
|
|
|
nativeBuildInputs = [ autoreconfHook makeWrapper ];
|
|
|
|
buildInputs = [ perlPackages.perl libpcap ];
|
2017-12-07 11:12:02 +00:00
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
for name in get-{oui,iab}; do
|
2019-12-12 19:27:29 +00:00
|
|
|
wrapProgram "$out/bin/$name" --set PERL5LIB "${perlPackages.makeFullPerlPath perlModules}"
|
2017-12-07 11:12:02 +00:00
|
|
|
done;
|
|
|
|
'';
|
2014-02-03 11:34:50 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2014-02-03 11:34:50 +00:00
|
|
|
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.
|
|
|
|
'';
|
2019-12-12 19:27:29 +00:00
|
|
|
homepage = "http://www.nta-monitor.com/wiki/index.php/Arp-scan_Documentation";
|
2014-02-03 11:34:50 +00:00
|
|
|
license = licenses.gpl3;
|
2021-01-28 08:01:35 +00:00
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
|
|
|
maintainers = with maintainers; [ bjornfor mikoim r-burns ];
|
2014-02-03 11:34:50 +00:00
|
|
|
};
|
|
|
|
}
|