Fixed compilation of kdeplasma-addons by passing libXi as buildInput

svn path=/nixpkgs/trunk/; revision=20021
This commit is contained in:
Sander van der Burg 2010-02-15 18:03:27 +00:00
parent 7390c0e31f
commit 1ec8a7412a
2 changed files with 3 additions and 3 deletions

View File

@ -168,7 +168,7 @@ pkgs.recurseIntoAttrs (rec {
kdeplasma_addons = import ./plasma-addons {
inherit (pkgs) stdenv fetchurl lib cmake qt4 perl python shared_mime_info;
inherit (pkgs.xlibs) libXtst;
inherit (pkgs.xlibs) libXtst libXi;
inherit kdelibs kdebase_workspace kdepimlibs kdebase kdegraphics kdeedu;
inherit automoc4 phonon soprano eigen qimageblitz attica;
};

View File

@ -1,4 +1,4 @@
{ stdenv, fetchurl, lib, cmake, qt4, perl, python, shared_mime_info, libXtst
{ stdenv, fetchurl, lib, cmake, qt4, perl, python, shared_mime_info, libXtst, libXi
, kdelibs, kdebase_workspace, kdepimlibs, kdebase, kdegraphics, kdeedu
, automoc4, phonon, soprano, eigen, qimageblitz, attica}:
@ -11,7 +11,7 @@ stdenv.mkDerivation {
inherit kdebase_workspace;
builder = ./builder.sh;
KDEDIRS="${kdeedu}";
buildInputs = [ cmake qt4 perl python shared_mime_info libXtst
buildInputs = [ cmake qt4 perl python shared_mime_info libXtst libXi
kdelibs kdebase_workspace kdepimlibs kdebase kdegraphics kdeedu
automoc4 phonon soprano eigen qimageblitz attica ];
meta = {