Our vim derivations have been disabling fortify for 10 years, due to a crash at the time that had yet to be fixed upstream. The vim configure script tries to strip out any `_FORTIFY_SOURCE` definition provided by the caller in favor of setting `-D_FORTIFY_SOURCE=1` itself and cites a crash introduced in gcc 4.0 as the reason, but our MacVim package has been running with fortify enabled without any known issues. After testing it seems that compiling vim with clang works just fine with fortify, but compiling it with gcc detects a buffer overflow and aborts. We do still need to disable `strictflexarrays1` though, as vim's `ufunc_S` struct ends with a `uf_name[4]` field that is treated as a flexible array with a minimum length of 4.
98 lines
2.2 KiB
Nix
98 lines
2.2 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
callPackage,
|
|
ncurses,
|
|
bash,
|
|
gawk,
|
|
gettext,
|
|
pkg-config,
|
|
# default vimrc
|
|
vimrc ? fetchurl {
|
|
name = "default-vimrc";
|
|
url = "https://raw.githubusercontent.com/archlinux/svntogit-packages/68f6d131750aa778807119e03eed70286a17b1cb/trunk/archlinux.vim";
|
|
sha256 = "18ifhv5q9prd175q3vxbqf6qyvkk6bc7d2lhqdk0q78i68kv9y0c";
|
|
},
|
|
}:
|
|
|
|
let
|
|
common = callPackage ./common.nix { inherit stdenv; };
|
|
in
|
|
stdenv.mkDerivation {
|
|
pname = "vim";
|
|
|
|
inherit (common)
|
|
version
|
|
outputs
|
|
src
|
|
postPatch
|
|
hardeningDisable
|
|
enableParallelBuilding
|
|
enableParallelInstalling
|
|
postFixup
|
|
meta
|
|
;
|
|
|
|
nativeBuildInputs = [
|
|
gettext
|
|
pkg-config
|
|
];
|
|
buildInputs = [
|
|
ncurses
|
|
bash
|
|
gawk
|
|
];
|
|
|
|
strictDeps = true;
|
|
|
|
configureFlags = [
|
|
"--enable-multibyte"
|
|
"--enable-nls"
|
|
]
|
|
++ lib.optionals (stdenv.hostPlatform != stdenv.buildPlatform) (
|
|
[
|
|
"vim_cv_toupper_broken=no"
|
|
"--with-tlib=ncurses"
|
|
"vim_cv_terminfo=yes"
|
|
"vim_cv_tgetent=zero" # it does on native anyway
|
|
"vim_cv_tty_group=tty"
|
|
"vim_cv_tty_mode=0660"
|
|
"vim_cv_getcwd_broken=no"
|
|
"vim_cv_stat_ignores_slash=yes"
|
|
"vim_cv_memmove_handles_overlap=yes"
|
|
]
|
|
++ lib.optionals stdenv.hostPlatform.isFreeBSD [
|
|
"vim_cv_timer_create=no"
|
|
"vim_cv_timer_create_with_lrt=yes"
|
|
]
|
|
++ lib.optionals (!stdenv.hostPlatform.isFreeBSD) [
|
|
"vim_cv_timer_create=yes"
|
|
]
|
|
);
|
|
|
|
# which.sh is used to for vim's own shebang patching, so make it find
|
|
# binaries for the host platform.
|
|
preConfigure = ''
|
|
export HOST_PATH
|
|
substituteInPlace src/which.sh --replace '$PATH' '$HOST_PATH'
|
|
'';
|
|
|
|
postInstall = ''
|
|
ln -s $out/bin/vim $out/bin/vi
|
|
mkdir -p $out/share/vim
|
|
cp "${vimrc}" $out/share/vim/vimrc
|
|
|
|
# Prevent bugs in the upstream makefile from silently failing and missing outputs.
|
|
# Some of those are build-time requirements for other packages.
|
|
for tool in ex xxd vi view vimdiff; do
|
|
if [ ! -e "$out/bin/$tool" ]; then
|
|
echo "ERROR: install phase did not install '$tool'."
|
|
exit 1
|
|
fi
|
|
done
|
|
'';
|
|
|
|
__impureHostDeps = [ "/dev/ptmx" ];
|
|
}
|