Added marble support to kdeplasma-addons

svn path=/nixpkgs/trunk/; revision=17055
This commit is contained in:
Sander van der Burg 2009-09-11 14:46:39 +00:00
parent cdfc752210
commit 9612c02ad7
2 changed files with 4 additions and 3 deletions

View file

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

View file

@ -1,5 +1,5 @@
{ stdenv, fetchurl, lib, cmake, qt4, perl, python, shared_mime_info
, kdelibs, kdebase_workspace, kdepimlibs, kdebase, kdegraphics
, kdelibs, kdebase_workspace, kdepimlibs, kdebase, kdegraphics, kdeedu
, automoc4, phonon, soprano, eigen, qimageblitz}:
stdenv.mkDerivation {
@ -12,8 +12,9 @@ stdenv.mkDerivation {
builder = ./builder.sh;
includeAllQtDirs=true;
CMAKE_PREFIX_PATH=kdepimlibs;
KDEDIRS="${kdeedu}";
buildInputs = [ cmake qt4 perl python shared_mime_info
kdelibs kdebase_workspace kdepimlibs kdebase kdegraphics
kdelibs kdebase_workspace kdepimlibs kdebase kdegraphics kdeedu
automoc4 phonon soprano eigen qimageblitz ];
meta = {
description = "KDE Plasma Addons";