Skip to content

Commit

Permalink
vimNox: pin to lua 5.1
Browse files Browse the repository at this point in the history
vimNox is currently built from a patched vim 7.3 source from 2012
that requires lua 5.1. Temporary fix, see discussion in #40749.
  • Loading branch information
xeji committed May 21, 2018
1 parent fbf8290 commit d9bdd77
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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 {};

Expand Down

0 comments on commit d9bdd77

Please sign in to comment.