2024-08-07 21:13:27 +00:00
|
|
|
{ lib, stdenv, fetchurl, fetchpatch, openssl, pkg-config, libnl
|
2022-01-20 17:12:47 +00:00
|
|
|
, nixosTests, wpa_supplicant_gui
|
2021-12-06 01:48:46 +00:00
|
|
|
, dbusSupport ? !stdenv.hostPlatform.isStatic, dbus
|
2021-06-27 16:36:16 +00:00
|
|
|
, withReadline ? true, readline
|
2021-12-06 01:48:46 +00:00
|
|
|
, withPcsclite ? !stdenv.hostPlatform.isStatic, pcsclite
|
2013-01-29 16:37:06 +00:00
|
|
|
}:
|
2013-01-30 14:16:08 +00:00
|
|
|
|
2012-02-20 14:26:01 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2024-07-24 17:40:16 +00:00
|
|
|
version = "2.11";
|
2012-09-07 11:54:20 +00:00
|
|
|
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "wpa_supplicant";
|
2012-02-20 14:26:01 +00:00
|
|
|
|
2007-04-08 20:20:21 +00:00
|
|
|
src = fetchurl {
|
2019-08-15 12:41:18 +00:00
|
|
|
url = "https://w1.fi/releases/${pname}-${version}.tar.gz";
|
2024-07-24 17:40:16 +00:00
|
|
|
sha256 = "sha256-kS6gb3TjCo42+7aAZNbN/yGNjVkdsPxddd7myBrH/Ao=";
|
2007-04-08 20:20:21 +00:00
|
|
|
};
|
2012-09-07 11:54:20 +00:00
|
|
|
|
2024-08-07 21:13:27 +00:00
|
|
|
patches = [
|
|
|
|
(fetchpatch {
|
|
|
|
name = "revert-change-breaking-auth-broadcom.patch";
|
|
|
|
url = "https://w1.fi/cgit/hostap/patch/?id=41638606054a09867fe3f9a2b5523aa4678cbfa5";
|
|
|
|
hash = "sha256-X6mBbj7BkW66aYeSCiI3JKBJv10etLQxaTRfRgwsFmM=";
|
|
|
|
revert = true;
|
|
|
|
})
|
2024-09-18 12:26:21 +00:00
|
|
|
./unsurprising-ext-password.patch
|
2024-08-07 21:13:27 +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 = ''
|
2022-02-04 22:43:19 +00:00
|
|
|
#CONFIG_ELOOP_EPOLL=y
|
|
|
|
#CONFIG_PRIVSEP=y
|
|
|
|
#CONFIG_TLSV12=y see #8332
|
2015-08-26 21:35:49 +00:00
|
|
|
CONFIG_AP=y
|
2022-02-04 22:43:19 +00:00
|
|
|
CONFIG_BGSCAN_LEARN=y
|
|
|
|
CONFIG_BGSCAN_SIMPLE=y
|
|
|
|
CONFIG_DEBUG_SYSLOG=y
|
|
|
|
CONFIG_EAP_EKE=y
|
2015-04-24 20:27:40 +00:00
|
|
|
CONFIG_EAP_FAST=y
|
|
|
|
CONFIG_EAP_GPSK=y
|
|
|
|
CONFIG_EAP_GPSK_SHA256=y
|
|
|
|
CONFIG_EAP_IKEV2=y
|
2022-02-04 22:43:19 +00:00
|
|
|
CONFIG_EAP_PAX=y
|
|
|
|
CONFIG_EAP_PWD=y
|
|
|
|
CONFIG_EAP_SAKE=y
|
2015-04-24 20:27:40 +00:00
|
|
|
CONFIG_ELOOP=eloop
|
2022-06-19 22:15:46 +00:00
|
|
|
CONFIG_EXT_PASSWORD_FILE=y
|
2022-02-04 22:43:19 +00:00
|
|
|
CONFIG_HS20=y
|
|
|
|
CONFIG_HT_OVERRIDES=y
|
2015-04-24 20:27:40 +00:00
|
|
|
CONFIG_IEEE80211AC=y
|
2023-06-11 13:10:37 +00:00
|
|
|
CONFIG_IEEE80211AX=y
|
2024-07-24 17:40:16 +00:00
|
|
|
CONFIG_IEEE80211BE=y
|
2022-02-04 22:43:19 +00:00
|
|
|
CONFIG_IEEE80211N=y
|
|
|
|
CONFIG_IEEE80211R=y
|
|
|
|
CONFIG_IEEE80211W=y
|
2015-04-24 20:27:40 +00:00
|
|
|
CONFIG_INTERNETWORKING=y
|
2022-02-04 22:43:19 +00:00
|
|
|
CONFIG_L2_PACKET=linux
|
|
|
|
CONFIG_LIBNL32=y
|
2024-02-24 03:54:38 +00:00
|
|
|
CONFIG_MESH=y
|
2022-02-04 22:43:19 +00:00
|
|
|
CONFIG_OWE=y
|
2015-04-24 20:27:40 +00:00
|
|
|
CONFIG_P2P=y
|
2023-03-21 23:32:06 +00:00
|
|
|
CONFIG_SAE_PK=y
|
2015-04-24 20:27:40 +00:00
|
|
|
CONFIG_TDLS=y
|
2022-02-04 22:43:19 +00:00
|
|
|
CONFIG_TLS=openssl
|
|
|
|
CONFIG_TLSV11=y
|
|
|
|
CONFIG_VHT_OVERRIDES=y
|
2022-02-04 22:52:39 +00:00
|
|
|
CONFIG_WNM=y
|
2022-02-04 22:43:19 +00:00
|
|
|
CONFIG_WPS=y
|
|
|
|
CONFIG_WPS_ER=y
|
|
|
|
CONFIG_WPS_NFS=y
|
2023-07-12 05:37:06 +00:00
|
|
|
CONFIG_SUITEB=y
|
|
|
|
CONFIG_SUITEB192=y
|
2024-08-13 20:17:15 +00:00
|
|
|
'' + lib.optionalString withPcsclite ''
|
2015-04-24 20:27:40 +00:00
|
|
|
CONFIG_EAP_SIM=y
|
|
|
|
CONFIG_EAP_AKA=y
|
|
|
|
CONFIG_EAP_AKA_PRIME=y
|
|
|
|
CONFIG_PCSC=y
|
2024-08-13 20:17:15 +00:00
|
|
|
'' + lib.optionalString dbusSupport ''
|
2015-04-24 20:27:40 +00:00
|
|
|
CONFIG_CTRL_IFACE_DBUS=y
|
|
|
|
CONFIG_CTRL_IFACE_DBUS_NEW=y
|
|
|
|
CONFIG_CTRL_IFACE_DBUS_INTRO=y
|
2021-12-06 01:48:46 +00:00
|
|
|
''
|
|
|
|
# Upstream uses conditionals based on ifdef, so opposite of =y is
|
|
|
|
# not =n, as one may expect, but undefine.
|
|
|
|
#
|
|
|
|
# This config is sourced into makefile.
|
2024-08-13 20:17:15 +00:00
|
|
|
+ lib.optionalString (!dbusSupport) ''
|
2021-12-06 01:48:46 +00:00
|
|
|
undefine CONFIG_CTRL_IFACE_DBUS
|
|
|
|
undefine CONFIG_CTRL_IFACE_DBUS_NEW
|
|
|
|
undefine CONFIG_CTRL_IFACE_DBUS_INTRO
|
2021-06-27 16:36:16 +00:00
|
|
|
'' + (if withReadline then ''
|
2015-04-24 20:27:40 +00:00
|
|
|
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 = ''
|
2018-11-23 11:29:26 +00: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 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 \
|
2021-01-15 14:45:37 +00:00
|
|
|
-I$(echo "${lib.getDev libnl}"/include/libnl*/) \
|
2024-08-13 20:17:15 +00:00
|
|
|
${lib.optionalString withPcsclite "-I${lib.getDev pcsclite}/include/PCSC/"}"
|
2009-04-04 00:21:21 +00:00
|
|
|
'';
|
2007-04-08 20:20:21 +00:00
|
|
|
|
2021-06-27 16:36:16 +00:00
|
|
|
buildInputs = [ openssl libnl ]
|
2024-08-13 20:17:15 +00:00
|
|
|
++ lib.optional dbusSupport dbus
|
|
|
|
++ lib.optional withReadline readline
|
|
|
|
++ lib.optional withPcsclite pcsclite;
|
2011-09-11 07:27:01 +00:00
|
|
|
|
2021-01-19 06:50:56 +00:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2011-09-11 07:27:01 +00:00
|
|
|
|
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/
|
2021-12-06 01:48:46 +00:00
|
|
|
''
|
|
|
|
+ lib.optionalString dbusSupport ''
|
2019-10-14 16:57:44 +00:00
|
|
|
mkdir -p $out/share/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
|
2019-09-16 16:03:15 +00:00
|
|
|
cp -v dbus/dbus-wpa_supplicant.conf $out/share/dbus-1/system.d
|
2014-03-11 11:34:48 +00:00
|
|
|
cp -v "systemd/"*.service $out/etc/systemd/system
|
2021-12-06 01:48:46 +00:00
|
|
|
''
|
|
|
|
+ ''
|
2015-05-15 09:08:22 +00:00
|
|
|
rm $out/share/man/man8/wpa_priv.8
|
2018-11-09 17:02:45 +00:00
|
|
|
install -Dm444 wpa_supplicant.conf $out/share/doc/wpa_supplicant/wpa_supplicant.conf.example
|
2014-03-11 11:34:48 +00:00
|
|
|
'';
|
2009-04-04 00:21:21 +00:00
|
|
|
|
2021-09-24 11:25:16 +00:00
|
|
|
passthru.tests = {
|
|
|
|
inherit (nixosTests) wpa_supplicant;
|
2022-01-20 17:12:47 +00:00
|
|
|
inherit wpa_supplicant_gui; # inherits the src+version updates
|
2021-09-24 11:25:16 +00:00
|
|
|
};
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2021-02-25 20:26:56 +00:00
|
|
|
homepage = "https://w1.fi/wpa_supplicant/";
|
2009-04-04 00:21:21 +00:00
|
|
|
description = "Tool for connecting to WPA and WPA2-protected wireless networks";
|
2015-04-24 20:27:40 +00:00
|
|
|
license = licenses.bsd3;
|
2021-04-15 16:13:18 +00:00
|
|
|
maintainers = with maintainers; [ marcweber ma27 ];
|
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
|
|
|
}
|