From 7e3bcbd4c2df76c10416a7ba6dedc93b1f6c1a03 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Llu=C3=ADs=20Batlle=20i=20Rossell?= Date: Mon, 12 Oct 2009 14:29:07 +0000 Subject: [PATCH] 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 --- pkgs/applications/editors/vim/default.nix | 6 +++--- 1 file 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;