vim_configurable: fix cross compile

arcnmx e13d2792 cade060d

+10
+10
pkgs/applications/editors/vim/configurable.nix
··· 93 93 "--disable-nextaf_check" 94 94 "--disable-carbon_check" 95 95 "--disable-gtktest" 96 + ] ++ lib.optionals (stdenv.hostPlatform != stdenv.buildPlatform) [ 97 + "vim_cv_toupper_broken=no" 98 + "--with-tlib=ncurses" 99 + "vim_cv_terminfo=yes" 100 + "vim_cv_tgetent=zero" # it does on native anyway 101 + "vim_cv_tty_group=tty" 102 + "vim_cv_tty_mode=0660" 103 + "vim_cv_getcwd_broken=no" 104 + "vim_cv_stat_ignores_slash=yes" 105 + "vim_cv_memmove_handles_overlap=yes" 96 106 ] 97 107 ++ lib.optional (guiSupport == "gtk2" || guiSupport == "gtk3") "--enable-gui=${guiSupport}" 98 108 ++ lib.optional stdenv.isDarwin