2013-12-29 13:22:32 +00:00
|
|
|
{ stdenv, fetchhg, ncurses, gettext, pkgconfig }:
|
2010-02-28 17:54:41 +00:00
|
|
|
|
2010-07-28 12:52:54 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2013-12-29 13:22:32 +00:00
|
|
|
name = "vim-7.4.131";
|
2004-07-30 12:57:27 +00:00
|
|
|
|
2013-12-29 13:22:32 +00:00
|
|
|
src = fetchhg {
|
|
|
|
url = "https://vim.googlecode.com/hg/";
|
|
|
|
tag = "v7-4-131";
|
|
|
|
sha256 = "1akr0i4pykbrkqwrglm0dfn5nwpncb9pgg4h7fl6a8likbr5f3wb";
|
2010-07-28 12:52:54 +00:00
|
|
|
};
|
2013-08-13 15:47:27 +00:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
2004-07-30 12:57:27 +00:00
|
|
|
|
2010-10-12 18:33:02 +00:00
|
|
|
buildInputs = [ ncurses pkgconfig ];
|
2012-12-28 18:20:09 +00:00
|
|
|
nativeBuildInputs = [ gettext ];
|
2010-10-03 09:17:22 +00:00
|
|
|
|
|
|
|
configureFlags = [
|
|
|
|
"--enable-multibyte"
|
|
|
|
"--enable-nls"
|
|
|
|
];
|
2007-08-11 11:14:36 +00:00
|
|
|
|
2007-08-10 19:53:30 +00:00
|
|
|
postInstall = "ln -s $out/bin/vim $out/bin/vi";
|
2010-08-11 20:14:25 +00:00
|
|
|
|
|
|
|
crossAttrs = {
|
|
|
|
configureFlags = [
|
|
|
|
"vim_cv_toupper_broken=no"
|
|
|
|
"--with-tlib=ncurses"
|
|
|
|
"vim_cv_terminfo=yes"
|
|
|
|
"vim_cv_tty_group=tty"
|
|
|
|
"vim_cv_tty_mode=0660"
|
|
|
|
"vim_cv_getcwd_broken=no"
|
|
|
|
"vim_cv_stat_ignores_slash=yes"
|
|
|
|
"ac_cv_sizeof_int=4"
|
|
|
|
"vim_cv_memmove_handles_overlap=yes"
|
2010-10-12 18:33:02 +00:00
|
|
|
"vim_cv_memmove_handles_overlap=yes"
|
2010-08-11 20:14:25 +00:00
|
|
|
"STRIP=${stdenv.cross.config}-strip"
|
|
|
|
];
|
|
|
|
};
|
2010-10-12 18:33:02 +00:00
|
|
|
|
|
|
|
# To fix the trouble in vim73, that it cannot cross-build with this patch
|
|
|
|
# to bypass a configure script check that cannot be done cross-building.
|
|
|
|
# http://groups.google.com/group/vim_dev/browse_thread/thread/66c02efd1523554b?pli=1
|
2013-09-04 01:32:06 +00:00
|
|
|
# patchPhase = ''
|
|
|
|
# sed -i -e 's/as_fn_error.*int32.*/:/' src/auto/configure
|
|
|
|
# '';
|
|
|
|
|
2013-07-14 01:24:45 +00:00
|
|
|
meta = with stdenv.lib; {
|
2006-10-12 10:53:16 +00:00
|
|
|
description = "The most popular clone of the VI editor";
|
2013-07-14 01:24:45 +00:00
|
|
|
homepage = http://www.vim.org;
|
|
|
|
maintainers = with maintainers; [ lovek323 ];
|
|
|
|
platforms = platforms.unix;
|
2006-10-12 10:53:16 +00:00
|
|
|
};
|
2004-07-30 12:57:27 +00:00
|
|
|
}
|