about summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2009-10-12 14:29:07 +0000
committerLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2009-10-12 14:29:07 +0000
commit7e3bcbd4c2df76c10416a7ba6dedc93b1f6c1a03 (patch)
tree89d4673b34338ee57c7c28ca069a38f9f8aebdde /pkgs/applications
parent03eab956182461127726c6410a3a6e748cb3a62a (diff)
downloadnixlib-7e3bcbd4c2df76c10416a7ba6dedc93b1f6c1a03.tar
nixlib-7e3bcbd4c2df76c10416a7ba6dedc93b1f6c1a03.tar.gz
nixlib-7e3bcbd4c2df76c10416a7ba6dedc93b1f6c1a03.tar.bz2
nixlib-7e3bcbd4c2df76c10416a7ba6dedc93b1f6c1a03.tar.lz
nixlib-7e3bcbd4c2df76c10416a7ba6dedc93b1f6c1a03.tar.xz
nixlib-7e3bcbd4c2df76c10416a7ba6dedc93b1f6c1a03.tar.zst
nixlib-7e3bcbd4c2df76c10416a7ba6dedc93b1f6c1a03.zip
Made the small vim (attribute 'vim') have --enable-multibyte. Not that a luxurious
features, in these times of utf-8, and at the end our ncurses has multibyte.

svn path=/nixpkgs/trunk/; revision=17757
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/editors/vim/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/applications/editors/vim/default.nix b/pkgs/applications/editors/vim/default.nix
index 35726bedc697..3ae5b79fe90b 100644
--- a/pkgs/applications/editors/vim/default.nix
+++ b/pkgs/applications/editors/vim/default.nix
@@ -24,9 +24,9 @@ let
 	"ximSupport" "-xim"
 	];
 	configFlags = [
-	"true" " "
+	"true" " --enable-multibyte "
 	"x11Support" " --enable-gui=auto "
-	"hugeFeatures" "--with-features=huge --enable-cscope --enable-multibyte --enable-xsmp "
+	"hugeFeatures" "--with-features=huge --enable-cscope --enable-xsmp "
 	"pythonSupport" " --enable-pythoninterp "
 	"perlSupport" " --enable-perlinterp "
 	"tclSupport" " --enable-tclinterp "
@@ -44,7 +44,7 @@ args.stdenv.mkDerivation {
  
   src = args.fetchurl {
     url = ftp://ftp.vim.org/pub/vim/unix/vim-7.2.tar.bz2;
-    sha256 = "076ydlfcmlnldjzarahg58vflawn083y90is6sz2j4klg9mj2iim";
+    sha256 = "11hxkb6r2550c4n13nwr0d8afvh30qjyr5c2hw16zgay43rb0kci";
   };
  
   inherit (args) ncurses;