2012-09-07 13:54:20 +02:00
|
|
|
{ stdenv, fetchurl, openssl, dbus_libs, pkgconfig, libnl }:
|
2010-04-27 06:38:41 +02:00
|
|
|
|
2012-02-20 15:26:01 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2012-09-07 13:54:20 +02:00
|
|
|
version = "1.0";
|
|
|
|
|
2012-02-20 15:26:01 +01:00
|
|
|
name = "wpa_supplicant-${version}";
|
|
|
|
|
2007-04-08 22:20:21 +02:00
|
|
|
src = fetchurl {
|
2012-09-07 13:54:20 +02:00
|
|
|
url = "http://hostap.epitest.fi/releases/${name}.tar.gz";
|
|
|
|
sha256 = "171b9027rbzy64zaal4832ix9i3mm6ypwmynbpia5bss793ivm4i";
|
2007-04-08 22:20:21 +02:00
|
|
|
};
|
2012-09-07 13:54:20 +02:00
|
|
|
|
2009-04-04 02:21:21 +02:00
|
|
|
preBuild = ''
|
2008-04-21 10:32:30 +02:00
|
|
|
cd wpa_supplicant
|
2011-06-07 23:48:41 +02:00
|
|
|
cp -v defconfig .config
|
|
|
|
echo CONFIG_DEBUG_SYSLOG=y | tee -a .config
|
2011-09-11 09:27:01 +02:00
|
|
|
echo CONFIG_CTRL_IFACE_DBUS=y | tee -a .config
|
|
|
|
echo CONFIG_CTRL_IFACE_DBUS_NEW=y | tee -a .config
|
|
|
|
echo CONFIG_CTRL_IFACE_DBUS_INTRO=y | tee -a .config
|
2011-09-13 21:29:13 +02:00
|
|
|
echo CONFIG_DRIVER_NL80211=y | tee -a .config
|
2012-09-07 13:54:20 +02:00
|
|
|
echo CONFIG_LIBNL32=y | tee -a .config
|
2007-04-08 22:20:21 +02:00
|
|
|
substituteInPlace Makefile --replace /usr/local $out
|
2009-04-04 02:21:21 +02:00
|
|
|
'';
|
2007-04-08 22:20:21 +02:00
|
|
|
|
2012-09-07 13:54:20 +02:00
|
|
|
buildInputs = [ openssl dbus_libs libnl ];
|
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
|
|
|
|
2012-02-20 15:26:01 +01:00
|
|
|
patches =
|
2012-09-07 13:54:20 +02:00
|
|
|
[ (fetchurl {
|
|
|
|
url = "https://projects.archlinux.org/svntogit/packages.git/plain/trunk/hostap_allow-linking-with-libnl-3.2.patch?h=packages/wpa_supplicant";
|
|
|
|
name = "hostap_allow-linking-with-libnl-3.2.patch";
|
|
|
|
sha256 = "0iwvjq0apc6mv1r03k5pnyjgda3q47yx36c4lqvv8i8q1vn7kbf2";
|
2012-02-20 15:26:01 +01: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
|
2011-06-07 23:48:41 +02:00
|
|
|
cp -v doc/docbook/*.5 $out/share/man/man5/
|
|
|
|
cp -v doc/docbook/*.8 $out/share/man/man8/
|
2012-01-18 21:16:00 +01:00
|
|
|
mkdir -p $out/etc/dbus-1/system.d $out/share/dbus-1/system-services
|
2011-09-13 21:29:13 +02: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
|
2012-02-20 15:26:01 +01:00
|
|
|
''; # */
|
2009-04-04 02:21:21 +02:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://hostap.epitest.fi/wpa_supplicant/;
|
|
|
|
description = "A tool for connecting to WPA and WPA2-protected wireless networks";
|
2011-06-07 23:48:41 +02:00
|
|
|
maintainers = with stdenv.lib.maintainers; [marcweber urkud];
|
2010-04-27 06:38:41 +02:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2009-04-04 02:21:21 +02:00
|
|
|
};
|
2007-04-08 22:20:21 +02:00
|
|
|
}
|