Switch to forward compatibility of kde45 on kde_baseapps.

svn path=/nixpkgs/trunk/; revision=28217
This commit is contained in:
Karn Kallio
2011-08-07 01:45:26 +00:00
parent 875b65ca0e
commit a233ebf891
6 changed files with 12 additions and 9 deletions

View File

@@ -1,4 +1,4 @@
{ stdenv, fetchurl, cmake, qt4, perl, kdelibs, automoc4, phonon, gettext}:
{ stdenv, fetchurl, cmake, qt4, perl, kdelibs, automoc4, phonon, gettext, kde_baseapps }:
stdenv.mkDerivation rec {
name = "kdiff3-0.9.95";
@@ -8,7 +8,7 @@ stdenv.mkDerivation rec {
};
# kdebase allows having a konqueror plugin built
buildInputs = [ cmake qt4 perl kdelibs automoc4 phonon gettext ];
buildInputs = [ cmake qt4 perl kdelibs automoc4 phonon gettext kde_baseapps ];
# Adjust the version of the DocBook XML to 4.2 ( so that it validates ).
patches = [ ./adjust-docbook-xml-version-to-4.2.patch ];