Remove kdebase as input to kdiff3.

Seems not to be needed and gives evaluation error when with kde4.7

svn path=/nixpkgs/trunk/; revision=28197
This commit is contained in:
Karn Kallio 2011-08-06 18:01:56 +00:00
parent 18509c88b3
commit 6a2f1f3d72

View file

@ -1,4 +1,4 @@
{ stdenv, fetchurl, cmake, qt4, perl, kdelibs, kdebase, automoc4, phonon, gettext}:
{ stdenv, fetchurl, cmake, qt4, perl, kdelibs, automoc4, phonon, gettext}:
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 kdebase ];
buildInputs = [ cmake qt4 perl kdelibs automoc4 phonon gettext ];
# Adjust the version of the DocBook XML to 4.2 ( so that it validates ).
patches = [ ./adjust-docbook-xml-version-to-4.2.patch ];