2014-06-01 15:40:14 +02:00
|
|
|
{ stdenv, fetchurl, libpcap, openssl, zlib, wirelesstools, libnl, pkgconfig }:
|
2009-02-01 22:21:12 +01:00
|
|
|
|
2011-02-14 23:40:51 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2017-02-02 03:03:22 +01:00
|
|
|
name = "aircrack-ng-1.2-rc4";
|
2009-02-01 22:21:12 +01:00
|
|
|
|
2013-06-02 19:54:20 +02:00
|
|
|
src = fetchurl {
|
|
|
|
url = "http://download.aircrack-ng.org/${name}.tar.gz";
|
2017-02-02 03:03:22 +01:00
|
|
|
sha256 = "0dpzx9kddxpgzmgvdpl3rxn0jdaqhm5wxxndp1xd7d75mmmc2fnr";
|
2009-02-01 22:21:12 +01:00
|
|
|
};
|
|
|
|
|
2017-09-05 23:26:13 +02:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ libpcap openssl zlib libnl ];
|
2009-02-01 22:21:12 +01:00
|
|
|
|
2009-02-02 22:57:18 +01:00
|
|
|
patchPhase = ''
|
|
|
|
sed -e 's@^prefix.*@prefix = '$out@ -i common.mak
|
|
|
|
sed -e 's@/usr/local/bin@'${wirelesstools}@ -i src/osdep/linux.c
|
|
|
|
'';
|
2009-02-01 22:21:12 +01:00
|
|
|
|
2013-06-02 20:37:14 +02:00
|
|
|
meta = with stdenv.lib; {
|
2016-01-14 02:48:15 +01:00
|
|
|
description = "Wireless encryption cracking tools";
|
2009-02-01 22:21:12 +01:00
|
|
|
homepage = http://www.aircrack-ng.org/;
|
2016-01-14 02:48:15 +01:00
|
|
|
license = licenses.gpl2Plus;
|
2016-05-17 13:57:28 +02:00
|
|
|
maintainers = with maintainers; [ domenkozar viric garbas chaoflow nckx ];
|
2013-06-03 00:31:33 +02:00
|
|
|
platforms = platforms.linux;
|
2009-02-01 22:21:12 +01:00
|
|
|
};
|
|
|
|
}
|