2011-06-07 23:48:41 +02:00
|
|
|
{stdenv, fetchurl, openssl, qt4, inkscape}:
|
2010-04-27 06:38:41 +02:00
|
|
|
|
|
|
|
let
|
2011-06-07 23:48:41 +02:00
|
|
|
version = "0.7.2";
|
2007-04-08 22:20:21 +02:00
|
|
|
src = fetchurl {
|
2011-06-07 23:48:41 +02:00
|
|
|
url = "http://hostap.epitest.fi/releases/wpa_supplicant-${version}.tar.gz";
|
2010-04-21 13:37:15 +02:00
|
|
|
sha256 = "1gnwhnczli50gidsq22ya68hixmdrhd1sxw202ygihvg6xsjl06z";
|
2007-04-08 22:20:21 +02:00
|
|
|
};
|
2011-06-07 23:48:41 +02:00
|
|
|
in
|
|
|
|
|
|
|
|
(stdenv.mkDerivation rec {
|
|
|
|
name = "wpa_supplicant-${version}";
|
|
|
|
inherit src;
|
2007-04-08 22:20:21 +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
|
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
|
|
|
|
2011-06-07 23:48:41 +02:00
|
|
|
buildInputs = [openssl];
|
2009-04-04 02:21:21 +02:00
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
ensureDir $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/
|
|
|
|
'';
|
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
|
|
|
};
|
2011-06-07 23:48:41 +02:00
|
|
|
}) // {
|
|
|
|
gui = stdenv.mkDerivation {
|
|
|
|
name = "wpa_gui-${version}";
|
2010-04-27 06:38:41 +02:00
|
|
|
|
2011-06-07 23:48:41 +02:00
|
|
|
inherit src;
|
|
|
|
|
|
|
|
buildInputs = [ qt4 ];
|
|
|
|
|
|
|
|
buildNativeInputs = [ inkscape ];
|
|
|
|
|
|
|
|
prePatch = "cd wpa_supplicant/wpa_gui-qt4";
|
|
|
|
|
|
|
|
configurePhase = ''
|
|
|
|
lrelease wpa_gui.pro
|
|
|
|
qmake'';
|
|
|
|
|
|
|
|
# We do not install .xpm icons. First of all, I don't know where they should
|
|
|
|
# be install. Second, this allows us to drop imagemagick build-time dependency.
|
|
|
|
postBuild = ''
|
|
|
|
sed -e '/ICONS.*xpm/d' -i icons/Makefile
|
|
|
|
make -C icons
|
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -pv $out/bin
|
|
|
|
cp -v wpa_gui $out/bin
|
|
|
|
mkdir -pv $out/share/applications
|
|
|
|
cp -v wpa_gui.desktop $out/share/applications
|
|
|
|
mkdir -pv $out/share/icons
|
|
|
|
cp -av icons/hicolor $out/share/icons
|
|
|
|
'';
|
|
|
|
};
|
2007-04-08 22:20:21 +02:00
|
|
|
}
|