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-02-20 20:09:49 +00:00
|
|
|
version = "2.1";
|
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-02-20 20:09:49 +00:00
|
|
|
sha256 = "0xxjw7lslvql1ykfbwmbhdrnjsjljf59fbwf837418s97dz2wqwi";
|
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
|
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
|
|
|
|
2014-03-11 11:34:33 +00:00
|
|
|
patches = [ ./libnl.patch
|
|
|
|
# remove this patch after wpa_supplicant 2.1
|
|
|
|
(fetchurl {
|
|
|
|
url ="http://projects.archlinux.org/svntogit/packages.git/plain/trunk/0001-Revert-OpenSSL-Do-not-accept-SSL-Client-certificate-.patch?h=packages/wpa_supplicant";
|
|
|
|
sha256 = "0x1wl2nbl7v9kv80qvysfjhhg5a7lmgygv1y723flps6y8ngm19w";
|
|
|
|
})
|
|
|
|
];
|
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
|
2011-06-07 21:48:41 +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
|
2011-09-13 19:29:13 +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/*
|
|
|
|
cp -v dbus/dbus-wpa_supplicant.conf $out/etc/dbus-1/system.d
|
2013-01-03 11:47:00 +00:00
|
|
|
cp -v systemd/*.service $out/etc/systemd/system
|
2012-02-20 14:26:01 +00:00
|
|
|
''; # */
|
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
|
|
|
}
|