summary refs log tree commit diff
path: root/pkgs/applications/editors/kile
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2012-06-20 09:11:58 +0000
committerVladimír Čunát <vcunat@gmail.com>2012-06-20 09:11:58 +0000
commitcf2a383bc721887f361bdd12369ed28161857131 (patch)
treeaf83791376b4b744cf3c8263c6a862c71a26fa3b /pkgs/applications/editors/kile
parent9c3087b6cb295ab750e4a7eddbbf516de7814853 (diff)
downloadnixpkgs-cf2a383bc721887f361bdd12369ed28161857131.tar
nixpkgs-cf2a383bc721887f361bdd12369ed28161857131.tar.gz
nixpkgs-cf2a383bc721887f361bdd12369ed28161857131.tar.bz2
nixpkgs-cf2a383bc721887f361bdd12369ed28161857131.tar.lz
nixpkgs-cf2a383bc721887f361bdd12369ed28161857131.tar.xz
nixpkgs-cf2a383bc721887f361bdd12369ed28161857131.tar.zst
nixpkgs-cf2a383bc721887f361bdd12369ed28161857131.zip
Hot-fixing kile's nl handbook compilation problem on KDE-4.7 by removing it.
svn path=/nixpkgs/trunk/; revision=34568
Diffstat (limited to 'pkgs/applications/editors/kile')
-rw-r--r--pkgs/applications/editors/kile/default.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/applications/editors/kile/default.nix b/pkgs/applications/editors/kile/default.nix
index e837dfdecc1..a24c6b18d8c 100644
--- a/pkgs/applications/editors/kile/default.nix
+++ b/pkgs/applications/editors/kile/default.nix
@@ -11,6 +11,9 @@ stdenv.mkDerivation rec {
   buildNativeInputs = [ cmake gettext ];
   buildInputs = [ kdelibs ];
 
+  # for KDE 4.7 the nl translations fail since kile-2.1.2
+  preConfigure = "rm -r translations/nl";
+
   meta = {
     description = "An integrated LaTeX editor for KDE";
     homepage = http://kile.sourceforge.net;