vimNox: pin to lua 5.1

vimNox is currently built from a patched vim 7.3 source from 2012
that requires lua 5.1. Temporary fix, see discussion in #40749.
This commit is contained in:
Uli Baum 2018-05-21 11:46:44 +02:00
parent fbf82900c4
commit d9bdd77eb5

View File

@ -18374,7 +18374,10 @@ with pkgs;
xxd = callPackage ../tools/misc/xxd { };
vimNox = lowPrio (vim_configurable.override { source = "vim-nox"; });
vimNox = lowPrio (vim_configurable.override {
source = "vim-nox";
lua = pkgs.lua5_1; # vimNox source is from 2012, requires older lua
});
qpdfview = libsForQt5.callPackage ../applications/misc/qpdfview {};