Added libXtst as buildInput in order to fix the compilation of kdeplasma-addons

svn path=/nixpkgs/trunk/; revision=20001
This commit is contained in:
Sander van der Burg 2010-02-14 23:07:57 +00:00
parent 41c17ffebf
commit de25c3f41d
2 changed files with 3 additions and 2 deletions

View file

@ -168,6 +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 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
{ stdenv, fetchurl, lib, cmake, qt4, perl, python, shared_mime_info, libXtst
, 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
buildInputs = [ cmake qt4 perl python shared_mime_info libXtst
kdelibs kdebase_workspace kdepimlibs kdebase kdegraphics kdeedu
automoc4 phonon soprano eigen qimageblitz attica ];
meta = {