about summary refs log tree commit diff
path: root/pkgs/tools/text/kdiff3
diff options
context:
space:
mode:
authorKarn Kallio <tierpluspluslists@gmail.com>2011-08-06 18:01:56 +0000
committerKarn Kallio <tierpluspluslists@gmail.com>2011-08-06 18:01:56 +0000
commit6a2f1f3d72aafa4606a339973f4a1507ccbf2cd0 (patch)
treebacd62bcb3416c7120c0a862f8a209f422fb41b7 /pkgs/tools/text/kdiff3
parent18509c88b3e158ccf00b888370e06dcb8aaaee08 (diff)
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
Diffstat (limited to 'pkgs/tools/text/kdiff3')
-rw-r--r--pkgs/tools/text/kdiff3/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/text/kdiff3/default.nix b/pkgs/tools/text/kdiff3/default.nix
index 63956a6303541..1568cc4bfde2d 100644
--- a/pkgs/tools/text/kdiff3/default.nix
+++ b/pkgs/tools/text/kdiff3/default.nix
@@ -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 ];