2019-06-16 21:59:06 +02:00
|
|
|
{ stdenv, fetchurl, openssl, pkgconfig, libnl
|
2018-07-17 22:11:16 +02:00
|
|
|
, dbus, readline ? null, pcsclite ? null
|
2013-01-29 17:37:06 +01:00
|
|
|
}:
|
2013-01-30 15:16:08 +01:00
|
|
|
|
2015-04-24 22:27:40 +02:00
|
|
|
with stdenv.lib;
|
2012-02-20 15:26:01 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-21 08:30:06 +02:00
|
|
|
version = "2.9";
|
2012-09-07 13:54:20 +02:00
|
|
|
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "wpa_supplicant";
|
2012-02-20 15:26:01 +01:00
|
|
|
|
2007-04-08 22:20:21 +02:00
|
|
|
src = fetchurl {
|
2019-08-15 14:41:18 +02:00
|
|
|
url = "https://w1.fi/releases/${pname}-${version}.tar.gz";
|
2019-08-21 08:30:06 +02:00
|
|
|
sha256 = "05qzak1mssnxcgdrafifxh9w86a4ha69qabkg4bsigk499xyxggw";
|
2007-04-08 22:20:21 +02:00
|
|
|
};
|
2012-09-07 13:54:20 +02:00
|
|
|
|
2019-10-02 21:16:56 +02:00
|
|
|
patches = [
|
|
|
|
(fetchurl {
|
|
|
|
name = "CVE-2019-16275.patch";
|
|
|
|
url = "https://w1.fi/security/2019-7/0001-AP-Silently-ignore-management-frame-from-unexpected-.patch";
|
|
|
|
sha256 = "15xjyy7crb557wxpx898b5lnyblxghlij0xby5lmj9hpwwss34dz";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2015-04-24 22:27:40 +02: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 23:35:49 +02:00
|
|
|
CONFIG_AP=y
|
2015-04-24 22:27:40 +02: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 17:33:06 +02:00
|
|
|
#CONFIG_TLSV12=y see #8332
|
2015-04-24 22:27:40 +02: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 20:39:14 +01:00
|
|
|
CONFIG_BGSCAN_SIMPLE=y
|
2015-04-24 22:27:40 +02:00
|
|
|
'' + optionalString (pcsclite != null) ''
|
|
|
|
CONFIG_EAP_SIM=y
|
|
|
|
CONFIG_EAP_AKA=y
|
|
|
|
CONFIG_EAP_AKA_PRIME=y
|
|
|
|
CONFIG_PCSC=y
|
2018-07-17 22:11:16 +02:00
|
|
|
'' + optionalString (dbus != null) ''
|
2015-04-24 22:27:40 +02:00
|
|
|
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 13:54:20 +02:00
|
|
|
|
2009-04-04 02:21:21 +02:00
|
|
|
preBuild = ''
|
2018-11-23 12:29:26 +01:00
|
|
|
for manpage in wpa_supplicant/doc/docbook/wpa_supplicant.conf* ; do
|
|
|
|
substituteInPlace "$manpage" --replace /usr/share/doc $out/share/doc
|
|
|
|
done
|
2008-04-21 10:32:30 +02:00
|
|
|
cd wpa_supplicant
|
2011-06-07 23:48:41 +02:00
|
|
|
cp -v defconfig .config
|
2013-01-30 15:16:08 +01:00
|
|
|
echo "$extraConfig" >> .config
|
2015-04-24 22:27:40 +02:00
|
|
|
cat -n .config
|
2007-04-08 22:20:21 +02:00
|
|
|
substituteInPlace Makefile --replace /usr/local $out
|
2015-04-24 22:27:40 +02:00
|
|
|
export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE \
|
2018-06-21 12:40:15 +02:00
|
|
|
-I$(echo "${stdenv.lib.getDev libnl}"/include/libnl*/) \
|
|
|
|
-I${stdenv.lib.getDev pcsclite}/include/PCSC/"
|
2009-04-04 02:21:21 +02:00
|
|
|
'';
|
2007-04-08 22:20:21 +02:00
|
|
|
|
2018-07-17 22:11:16 +02:00
|
|
|
buildInputs = [ openssl libnl dbus readline pcsclite ];
|
2011-09-11 09:27:01 +02:00
|
|
|
|
2012-12-28 19:20:09 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2011-09-11 09:27:01 +02:00
|
|
|
|
2009-04-04 02:21:21 +02:00
|
|
|
postInstall = ''
|
2012-01-18 21:16:00 +01:00
|
|
|
mkdir -p $out/share/man/man5 $out/share/man/man8
|
2014-03-11 12:34:48 +01:00
|
|
|
cp -v "doc/docbook/"*.5 $out/share/man/man5/
|
|
|
|
cp -v "doc/docbook/"*.8 $out/share/man/man8/
|
2019-10-14 18:57:44 +02:00
|
|
|
|
|
|
|
mkdir -p $out/share/dbus-1/system.d $out/share/dbus-1/system-services $out/etc/systemd/system
|
2014-03-11 12:34:48 +01: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/"*
|
2019-09-16 18:03:15 +02:00
|
|
|
cp -v dbus/dbus-wpa_supplicant.conf $out/share/dbus-1/system.d
|
2014-03-11 12:34:48 +01:00
|
|
|
cp -v "systemd/"*.service $out/etc/systemd/system
|
2019-10-14 18:57:44 +02:00
|
|
|
|
2015-05-15 11:08:22 +02:00
|
|
|
rm $out/share/man/man8/wpa_priv.8
|
2018-11-09 18:02:45 +01:00
|
|
|
install -Dm444 wpa_supplicant.conf $out/share/doc/wpa_supplicant/wpa_supplicant.conf.example
|
2014-03-11 12:34:48 +01:00
|
|
|
'';
|
2009-04-04 02:21:21 +02:00
|
|
|
|
2015-04-24 22:27:40 +02:00
|
|
|
meta = with stdenv.lib; {
|
2009-04-04 02:21:21 +02:00
|
|
|
homepage = http://hostap.epitest.fi/wpa_supplicant/;
|
|
|
|
description = "A tool for connecting to WPA and WPA2-protected wireless networks";
|
2015-04-24 22:27:40 +02:00
|
|
|
license = licenses.bsd3;
|
2019-01-26 11:01:09 +01:00
|
|
|
maintainers = with maintainers; [ marcweber ];
|
2015-04-24 22:27:40 +02:00
|
|
|
platforms = platforms.linux;
|
2009-04-04 02:21:21 +02:00
|
|
|
};
|
2007-04-08 22:20:21 +02:00
|
|
|
}
|