2015-08-14 22:06:18 +01:00
|
|
|
{ stdenv, fetchFromGitHub, ncurses, gettext, pkgconfig
|
2015-06-26 17:53:44 +01:00
|
|
|
|
|
|
|
# apple frameworks
|
2015-10-28 20:40:10 +00:00
|
|
|
, Carbon, Cocoa }:
|
2010-02-28 17:54:41 +00:00
|
|
|
|
2010-07-28 13:52:54 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2013-08-29 22:27:48 +01:00
|
|
|
name = "vim-${version}";
|
2015-08-20 23:57:25 +01:00
|
|
|
version = "7.4.827";
|
2013-08-29 22:27:48 +01:00
|
|
|
|
2015-08-14 22:06:18 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "vim";
|
|
|
|
repo = "vim";
|
2015-08-20 23:57:25 +01:00
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "1m34s2hsc5lcish6gmvn2iwaz0k7jc3kg9q4nf30fj9inl7gaybs";
|
2010-07-28 13:52:54 +01:00
|
|
|
};
|
2013-08-13 16:47:27 +01:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
2013-08-29 22:27:48 +01:00
|
|
|
|
2015-06-26 17:53:44 +01:00
|
|
|
buildInputs = [ ncurses pkgconfig ]
|
2015-10-28 20:40:10 +00:00
|
|
|
++ stdenv.lib.optionals stdenv.isDarwin [ Carbon Cocoa ];
|
2012-12-28 18:20:09 +00:00
|
|
|
nativeBuildInputs = [ gettext ];
|
2010-10-03 10:17:22 +01:00
|
|
|
|
|
|
|
configureFlags = [
|
|
|
|
"--enable-multibyte"
|
|
|
|
"--enable-nls"
|
|
|
|
];
|
2007-08-11 12:14:36 +01:00
|
|
|
|
2007-08-10 20:53:30 +01:00
|
|
|
postInstall = "ln -s $out/bin/vim $out/bin/vi";
|
2010-08-11 21:14:25 +01: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 19:33:02 +01:00
|
|
|
"vim_cv_memmove_handles_overlap=yes"
|
2010-08-11 21:14:25 +01:00
|
|
|
"STRIP=${stdenv.cross.config}-strip"
|
|
|
|
];
|
|
|
|
};
|
2010-10-12 19:33:02 +01:00
|
|
|
|
2015-11-21 20:06:41 +00:00
|
|
|
sandboxProfile = stdenv.lib.sandbox.allowFileRead "/dev/ptmx";
|
2015-11-13 02:59:17 +00:00
|
|
|
|
2010-10-12 19:33:02 +01: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 02:32:06 +01:00
|
|
|
# patchPhase = ''
|
|
|
|
# sed -i -e 's/as_fn_error.*int32.*/:/' src/auto/configure
|
|
|
|
# '';
|
|
|
|
|
2013-07-14 02:24:45 +01:00
|
|
|
meta = with stdenv.lib; {
|
2006-10-12 11:53:16 +01:00
|
|
|
description = "The most popular clone of the VI editor";
|
2013-07-14 02:24:45 +01:00
|
|
|
homepage = http://www.vim.org;
|
2015-05-28 18:20:29 +01:00
|
|
|
license = licenses.vim;
|
2013-07-14 02:24:45 +01:00
|
|
|
maintainers = with maintainers; [ lovek323 ];
|
|
|
|
platforms = platforms.unix;
|
2006-10-12 11:53:16 +01:00
|
|
|
};
|
2004-07-30 13:57:27 +01:00
|
|
|
}
|