forked from mirrors/nixpkgs
* Fix ugly wpa_supplicant expression.
svn path=/nixpkgs/trunk/; revision=32427
This commit is contained in:
parent
ccea8d08e9
commit
9c33ae3f2b
|
@ -1,16 +1,14 @@
|
|||
{stdenv, fetchurl, openssl, qt4, inkscape, dbus_libs, pkgconfig, libnl1}:
|
||||
{ stdenv, fetchurl, openssl, dbus_libs, pkgconfig, libnl1 }:
|
||||
|
||||
let
|
||||
stdenv.mkDerivation rec {
|
||||
version = "0.7.3";
|
||||
|
||||
name = "wpa_supplicant-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://hostap.epitest.fi/releases/wpa_supplicant-${version}.tar.gz";
|
||||
sha256 = "0hwlsn512q2ps8wxxjmkjfdg3vjqqb9mxnnwfv1wqijkm3551kfh";
|
||||
};
|
||||
in
|
||||
|
||||
(stdenv.mkDerivation rec {
|
||||
name = "wpa_supplicant-${version}";
|
||||
inherit src;
|
||||
|
||||
preBuild = ''
|
||||
cd wpa_supplicant
|
||||
|
@ -27,8 +25,9 @@ in
|
|||
|
||||
buildNativeInputs = [ pkgconfig ];
|
||||
|
||||
# Upstream patch required for NetworkManager-0.9
|
||||
patches = [ (fetchurl {
|
||||
patches =
|
||||
[ # Upstream patch required for NetworkManager-0.9
|
||||
(fetchurl {
|
||||
url = "http://w1.fi/gitweb/gitweb.cgi?p=hostap-07.git;a=commitdiff_plain;h=b80b5639935d37b95d00f86b57f2844a9c775f57";
|
||||
name = "wpa_supplicant-nm-0.9.patch";
|
||||
sha256 = "1pqba0l4rfhba5qafvvbywi9x1qmphs944p704bh1flnx7cz6ya8";
|
||||
|
@ -50,7 +49,7 @@ in
|
|||
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
|
||||
'';
|
||||
''; # */
|
||||
|
||||
meta = {
|
||||
homepage = http://hostap.epitest.fi/wpa_supplicant/;
|
||||
|
@ -58,41 +57,4 @@ in
|
|||
maintainers = with stdenv.lib.maintainers; [marcweber urkud];
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
};
|
||||
}) // {
|
||||
gui = stdenv.mkDerivation {
|
||||
name = "wpa_gui-${version}";
|
||||
|
||||
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
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "Qt4 wpa_supplicant client";
|
||||
inherit (qt4.meta) platforms;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
@ -1,15 +0,0 @@
|
|||
{stdenv, fetchurl, qt4, imagemagick, inkscape}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pkgname = "wpa_supplicant";
|
||||
version = "0.6.9";
|
||||
name = "${pkgname}-gui-qt4-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://hostap.epitest.fi/releases/${pkgname}-${version}.tar.gz";
|
||||
sha256 = "0w7mf3nyilkjsn5v7p15v5fxnh0klgm8c979z80y0mkw7zx88lkf";
|
||||
};
|
||||
|
||||
buildInputs = [qt4 imagemagick inkscape];
|
||||
builder = ./builder-gui-qt4.sh;
|
||||
}
|
42
pkgs/os-specific/linux/wpa_supplicant/gui.nix
Normal file
42
pkgs/os-specific/linux/wpa_supplicant/gui.nix
Normal file
|
@ -0,0 +1,42 @@
|
|||
{ stdenv, fetchurl, qt4, inkscape, wpa_supplicant }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "wpa_gui-${wpa_supplicant.version}";
|
||||
|
||||
inherit (wpa_supplicant) 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
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "Qt-based GUI for wpa_supplicant";
|
||||
inherit (qt4.meta) platforms;
|
||||
};
|
||||
}
|
|
@ -6270,7 +6270,7 @@ let
|
|||
|
||||
wpa_supplicant = callPackage ../os-specific/linux/wpa_supplicant { };
|
||||
|
||||
wpa_supplicant_gui = pkgs.wpa_supplicant.gui;
|
||||
wpa_supplicant_gui = callPackage ../os-specific/linux/wpa_supplicant/gui.nix { };
|
||||
|
||||
xf86_input_multitouch =
|
||||
callPackage ../os-specific/linux/xf86-input-multitouch { };
|
||||
|
|
Loading…
Reference in a new issue