arp-scan: 1.9 -> 1.9.5
This commit is contained in:
parent
04bd737062
commit
73f76fac1b
@ -1,13 +1,17 @@
|
|||||||
{ stdenv, fetchurl, libpcap }:
|
{ stdenv, fetchFromGitHub, autoreconfHook, libpcap }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "arp-scan-1.9";
|
name = "arp-scan-${version}";
|
||||||
|
version = "1.9.5";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchFromGitHub {
|
||||||
url = "http://www.nta-monitor.com/files/arp-scan/${name}.tar.gz";
|
owner = "royhills";
|
||||||
sha256 = "14nqjzbmnlx2nac7lwa93y5m5iqk3layakyxyvfmvs283k3qm46f";
|
repo = "arp-scan";
|
||||||
|
rev = "4de863c2627a05177eda7159692a588f9f520cd1";
|
||||||
|
sha256 = "15zpfdybk2kh98shqs8qqd0f9nyi2ch2wcyv729rfj7yp0hif5mb";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ autoreconfHook ];
|
||||||
buildInputs = [ libpcap ];
|
buildInputs = [ libpcap ];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
@ -19,6 +23,6 @@ stdenv.mkDerivation rec {
|
|||||||
homepage = http://www.nta-monitor.com/wiki/index.php/Arp-scan_Documentation;
|
homepage = http://www.nta-monitor.com/wiki/index.php/Arp-scan_Documentation;
|
||||||
license = licenses.gpl3;
|
license = licenses.gpl3;
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
maintainers = [ maintainers.bjornfor ];
|
maintainers = with maintainers; [ bjornfor mikoim ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user