2013-01-29 16:37:06 +00:00
|
|
|
{ stdenv, fetchurl, lib, openssl, dbus_libs, pkgconfig, libnl
|
|
|
|
, readlineSupport ? true, readline
|
|
|
|
}:
|
2013-01-30 14:16:08 +00:00
|
|
|
|
|
|
|
assert readlineSupport -> readline != null;
|
2010-04-27 04:38:41 +00:00
|
|
|
|
2012-02-20 14:26:01 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2014-10-12 08:34:05 +00:00
|
|
|
version = "2.3";
|
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 {
|
2012-09-07 11:54:20 +00:00
|
|
|
url = "http://hostap.epitest.fi/releases/${name}.tar.gz";
|
2014-10-12 08:34:05 +00:00
|
|
|
sha256 = "0skvkl6c10ls4s48b2wmf47h9j1y40nlzxnzn8hyaw2j0prmpapa";
|
2007-04-08 20:20:21 +00:00
|
|
|
};
|
2012-09-07 11:54:20 +00:00
|
|
|
|
2013-01-30 14:16:08 +00:00
|
|
|
extraConfig =
|
|
|
|
''
|
|
|
|
CONFIG_DEBUG_SYSLOG=y
|
|
|
|
CONFIG_CTRL_IFACE_DBUS=y
|
|
|
|
CONFIG_CTRL_IFACE_DBUS_NEW=y
|
|
|
|
CONFIG_CTRL_IFACE_DBUS_INTRO=y
|
|
|
|
CONFIG_DRIVER_NL80211=y
|
|
|
|
CONFIG_LIBNL32=y
|
|
|
|
${stdenv.lib.optionalString readlineSupport "CONFIG_READLINE=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
|
|
|
|
cat .config
|
2007-04-08 20:20:21 +00:00
|
|
|
substituteInPlace Makefile --replace /usr/local $out
|
2014-10-12 08:34:05 +00:00
|
|
|
export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -I$(echo "${libnl}"/include/libnl*/)"
|
2009-04-04 00:21:21 +00:00
|
|
|
'';
|
2007-04-08 20:20:21 +00:00
|
|
|
|
2013-01-29 16:37:06 +00:00
|
|
|
buildInputs = [ openssl dbus_libs libnl ]
|
|
|
|
++ lib.optional readlineSupport readline;
|
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-23 18:09:30 +00:00
|
|
|
patches = [ ./0001-P2P-Validate-SSID-element-length-before-copying-it-C.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
|
|
|
|
'';
|
2009-04-04 00:21:21 +00:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://hostap.epitest.fi/wpa_supplicant/;
|
|
|
|
description = "A tool for connecting to WPA and WPA2-protected wireless networks";
|
2011-06-07 21:48:41 +00:00
|
|
|
maintainers = with stdenv.lib.maintainers; [marcweber urkud];
|
2010-04-27 04:38:41 +00:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2009-04-04 00:21:21 +00:00
|
|
|
};
|
2007-04-08 20:20:21 +00:00
|
|
|
}
|