2015-05-08 15:02:01 +00:00
|
|
|
{ stdenv, fetchpatch, fetchurl, lib, openssl, pkgconfig, libnl
|
2015-04-24 20:27:40 +00:00
|
|
|
, dbus_libs ? null, readline ? null, pcsclite ? null
|
2013-01-29 16:37:06 +00:00
|
|
|
}:
|
2013-01-30 14:16:08 +00:00
|
|
|
|
2015-04-24 20:27:40 +00:00
|
|
|
with stdenv.lib;
|
2012-02-20 14:26:01 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2016-10-27 11:57:56 +00:00
|
|
|
version = "2.6";
|
2012-09-07 11:54:20 +00:00
|
|
|
|
2012-02-20 14:26:01 +00:00
|
|
|
name = "wpa_supplicant-${version}";
|
|
|
|
|
2007-04-08 20:20:21 +00:00
|
|
|
src = fetchurl {
|
2017-09-16 11:15:26 +00:00
|
|
|
url = "https://w1.fi/releases/${name}.tar.gz";
|
2016-10-27 11:57:56 +00:00
|
|
|
sha256 = "0l0l5gz3d5j9bqjsbjlfcv4w4jwndllp9fmyai4x9kg6qhs6v4xl";
|
2007-04-08 20:20:21 +00:00
|
|
|
};
|
2012-09-07 11:54:20 +00:00
|
|
|
|
2015-04-24 20:27:40 +00:00
|
|
|
# TODO: Patch epoll so that the dbus actually responds
|
|
|
|
# TODO: Figure out how to get privsep working, currently getting SIGBUS
|
|
|
|
extraConfig = ''
|
2015-08-26 21:35:49 +00:00
|
|
|
CONFIG_AP=y
|
2015-04-24 20:27:40 +00:00
|
|
|
CONFIG_LIBNL32=y
|
|
|
|
CONFIG_EAP_FAST=y
|
|
|
|
CONFIG_EAP_PWD=y
|
|
|
|
CONFIG_EAP_PAX=y
|
|
|
|
CONFIG_EAP_SAKE=y
|
|
|
|
CONFIG_EAP_GPSK=y
|
|
|
|
CONFIG_EAP_GPSK_SHA256=y
|
|
|
|
CONFIG_WPS=y
|
|
|
|
CONFIG_WPS_ER=y
|
|
|
|
CONFIG_WPS_NFS=y
|
|
|
|
CONFIG_EAP_IKEV2=y
|
|
|
|
CONFIG_EAP_EKE=y
|
|
|
|
CONFIG_HT_OVERRIDES=y
|
|
|
|
CONFIG_VHT_OVERRIDES=y
|
|
|
|
CONFIG_ELOOP=eloop
|
|
|
|
#CONFIG_ELOOP_EPOLL=y
|
|
|
|
CONFIG_L2_PACKET=linux
|
|
|
|
CONFIG_IEEE80211W=y
|
|
|
|
CONFIG_TLS=openssl
|
|
|
|
CONFIG_TLSV11=y
|
2015-06-22 15:33:06 +00:00
|
|
|
#CONFIG_TLSV12=y see #8332
|
2015-04-24 20:27:40 +00:00
|
|
|
CONFIG_IEEE80211R=y
|
|
|
|
CONFIG_DEBUG_SYSLOG=y
|
|
|
|
#CONFIG_PRIVSEP=y
|
|
|
|
CONFIG_IEEE80211N=y
|
|
|
|
CONFIG_IEEE80211AC=y
|
|
|
|
CONFIG_INTERNETWORKING=y
|
|
|
|
CONFIG_HS20=y
|
|
|
|
CONFIG_P2P=y
|
|
|
|
CONFIG_TDLS=y
|
2016-12-13 19:39:14 +00:00
|
|
|
CONFIG_BGSCAN_SIMPLE=y
|
2015-04-24 20:27:40 +00:00
|
|
|
'' + optionalString (pcsclite != null) ''
|
|
|
|
CONFIG_EAP_SIM=y
|
|
|
|
CONFIG_EAP_AKA=y
|
|
|
|
CONFIG_EAP_AKA_PRIME=y
|
|
|
|
CONFIG_PCSC=y
|
|
|
|
'' + optionalString (dbus_libs != null) ''
|
|
|
|
CONFIG_CTRL_IFACE_DBUS=y
|
|
|
|
CONFIG_CTRL_IFACE_DBUS_NEW=y
|
|
|
|
CONFIG_CTRL_IFACE_DBUS_INTRO=y
|
|
|
|
'' + (if readline != null then ''
|
|
|
|
CONFIG_READLINE=y
|
|
|
|
'' else ''
|
|
|
|
CONFIG_WPA_CLI_EDIT=y
|
|
|
|
'');
|
2012-09-07 11:54:20 +00:00
|
|
|
|
2009-04-04 00:21:21 +00:00
|
|
|
preBuild = ''
|
2008-04-21 08:32:30 +00:00
|
|
|
cd wpa_supplicant
|
2011-06-07 21:48:41 +00:00
|
|
|
cp -v defconfig .config
|
2013-01-30 14:16:08 +00:00
|
|
|
echo "$extraConfig" >> .config
|
2015-04-24 20:27:40 +00:00
|
|
|
cat -n .config
|
2007-04-08 20:20:21 +00:00
|
|
|
substituteInPlace Makefile --replace /usr/local $out
|
2015-04-24 20:27:40 +00:00
|
|
|
export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE \
|
2016-04-16 17:37:26 +00:00
|
|
|
-I$(echo "${libnl.dev}"/include/libnl*/) \
|
2015-04-24 20:27:40 +00:00
|
|
|
-I${pcsclite}/include/PCSC/"
|
2009-04-04 00:21:21 +00:00
|
|
|
'';
|
2007-04-08 20:20:21 +00:00
|
|
|
|
2015-04-24 20:27:40 +00:00
|
|
|
buildInputs = [ openssl libnl dbus_libs readline pcsclite ];
|
2011-09-11 07:27:01 +00:00
|
|
|
|
2012-12-28 18:20:09 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2011-09-11 07:27:01 +00:00
|
|
|
|
2015-04-24 20:27:40 +00:00
|
|
|
patches = [
|
|
|
|
./build-fix.patch
|
|
|
|
];
|
2009-04-04 00:21:21 +00:00
|
|
|
|
|
|
|
postInstall = ''
|
2012-01-18 20:16:00 +00:00
|
|
|
mkdir -p $out/share/man/man5 $out/share/man/man8
|
2014-03-11 11:34:48 +00:00
|
|
|
cp -v "doc/docbook/"*.5 $out/share/man/man5/
|
|
|
|
cp -v "doc/docbook/"*.8 $out/share/man/man8/
|
2013-01-03 11:47:00 +00:00
|
|
|
mkdir -p $out/etc/dbus-1/system.d $out/share/dbus-1/system-services $out/etc/systemd/system
|
2014-03-11 11:34:48 +00:00
|
|
|
cp -v "dbus/"*service $out/share/dbus-1/system-services
|
|
|
|
sed -e "s@/sbin/wpa_supplicant@$out&@" -i "$out/share/dbus-1/system-services/"*
|
2011-09-13 19:29:13 +00:00
|
|
|
cp -v dbus/dbus-wpa_supplicant.conf $out/etc/dbus-1/system.d
|
2014-03-11 11:34:48 +00:00
|
|
|
cp -v "systemd/"*.service $out/etc/systemd/system
|
2015-05-15 09:08:22 +00:00
|
|
|
rm $out/share/man/man8/wpa_priv.8
|
2014-03-11 11:34:48 +00:00
|
|
|
'';
|
2009-04-04 00:21:21 +00:00
|
|
|
|
2015-04-24 20:27:40 +00:00
|
|
|
meta = with stdenv.lib; {
|
2009-04-04 00:21:21 +00:00
|
|
|
homepage = http://hostap.epitest.fi/wpa_supplicant/;
|
|
|
|
description = "A tool for connecting to WPA and WPA2-protected wireless networks";
|
2015-04-24 20:27:40 +00:00
|
|
|
license = licenses.bsd3;
|
2017-03-27 17:11:17 +00:00
|
|
|
maintainers = with maintainers; [ marcweber wkennington ];
|
2015-04-24 20:27:40 +00:00
|
|
|
platforms = platforms.linux;
|
2009-04-04 00:21:21 +00:00
|
|
|
};
|
2007-04-08 20:20:21 +00:00
|
|
|
}
|