Patches the python modules path of kdebase-workspace to compile with kdebindings again
svn path=/nixpkgs/trunk/; revision=19992
This commit is contained in:
parent
1d2c0eea75
commit
6eb2cc674a
|
@ -0,0 +1,8 @@
|
|||
source $stdenv/setup
|
||||
|
||||
myPatchPhase()
|
||||
{
|
||||
sed -i -e "s|\${PYTHON_SITE_PACKAGES_DIR}|$out/lib/python2.6/site-packages|" plasma/generic/scriptengines/python/CMakeLists.txt
|
||||
}
|
||||
patchPhase=myPatchPhase
|
||||
genericBuild
|
|
@ -1,4 +1,4 @@
|
|||
{ stdenv, fetchurl, lib, cmake, perl, python, pam, ConsoleKit
|
||||
{ stdenv, fetchurl, lib, cmake, perl, python, pam, consolekit
|
||||
, qt4, sip, pyqt4, kdelibs, kdepimlibs, kdebindings
|
||||
, libXi, libXau, libXdmcp, libXtst, libXcomposite, libXdamage, libXScrnSaver
|
||||
, lm_sensors, libxklavier, libusb, libpthreadstubs, boost
|
||||
|
@ -11,9 +11,10 @@ stdenv.mkDerivation {
|
|||
url = mirror://kde/stable/4.4.0/src/kdebase-workspace-4.4.0.tar.bz2;
|
||||
sha256 = "16rc4cpq97bfcvj0bmq9k3kv48gjbx8569m7lg3qm91xg8nz79hn";
|
||||
};
|
||||
buildInputs = [ cmake perl python qt4 pam /*ConsoleKit sip pyqt4*/ kdelibs kdepimlibs /*kdebindings*/ libpthreadstubs boost libusb stdenv.gcc.libc
|
||||
buildInputs = [ cmake perl python qt4 pam consolekit sip pyqt4 kdelibs kdepimlibs kdebindings libpthreadstubs boost libusb stdenv.gcc.libc
|
||||
libXi libXau libXdmcp libXtst libXcomposite libXdamage libXScrnSaver
|
||||
lm_sensors libxklavier automoc4 phonon strigi soprano qimageblitz akonadi polkit_qt ];
|
||||
builder = ./builder.sh;
|
||||
meta = {
|
||||
description = "KDE Workspace";
|
||||
longDescription = "KDE base components that are only required to work with X11 such KDM and KWin";
|
||||
|
|
|
@ -69,7 +69,7 @@ pkgs.recurseIntoAttrs (rec {
|
|||
### BASE
|
||||
kdebase_workspace = import ./base-workspace {
|
||||
inherit (pkgs) stdenv fetchurl lib cmake qt4 perl python pam sip pyqt4;
|
||||
inherit (pkgs) lm_sensors libxklavier libusb boost ConsoleKit;
|
||||
inherit (pkgs) lm_sensors libxklavier libusb boost consolekit;
|
||||
inherit (pkgs.xlibs) libXi libXau libXdmcp libXtst libXcomposite libXdamage libXScrnSaver libpthreadstubs;
|
||||
inherit kdelibs kdepimlibs kdebindings;
|
||||
inherit automoc4 phonon strigi soprano qimageblitz akonadi polkit_qt;
|
||||
|
|
Loading…
Reference in New Issue