vim_configurable: unpin from old lua 5.1 (#40749)
This pin was added in 2014 during a lua upgrade, but it appears vim today builds fine with lua 5.2, so we can have it just depend on the `lua` package.
This commit is contained in:
parent
e92d68e3ab
commit
65f58cfaf8
|
@ -18345,9 +18345,9 @@ with pkgs;
|
|||
vim_configurable = vimUtils.makeCustomizable (callPackage ../applications/editors/vim/configurable.nix {
|
||||
inherit (darwin.apple_sdk.frameworks) CoreServices Cocoa Foundation CoreData;
|
||||
inherit (darwin) libobjc cf-private;
|
||||
inherit lua;
|
||||
|
||||
features = "huge"; # one of tiny, small, normal, big or huge
|
||||
lua = pkgs.lua5_1;
|
||||
gui = config.vim.gui or "auto";
|
||||
|
||||
# optional features by flags
|
||||
|
|
Loading…
Reference in New Issue