vim_configureable: improve luajit support

This commit is contained in:
Doron Behar 2020-06-20 11:53:02 +03:00 committed by Matthieu Coudron
parent 30adb1fb9e
commit 8acdd6db79

View File

@ -104,6 +104,8 @@ in stdenv.mkDerivation rec {
++ stdenv.lib.optionals luaSupport [
"--with-lua-prefix=${lua}"
"--enable-luainterp"
] ++ stdenv.lib.optional lua.pkgs.isLuaJIT [
"--with-luajit"
]
++ stdenv.lib.optionals pythonSupport [
"--enable-python${if isPython3 then "3" else ""}interp=yes"