neovim: remove lua override

This commit is contained in:
Roman Volosatovs 2021-01-27 11:39:10 +01:00
parent 74f12354e6
commit 68a780e669
No known key found for this signature in database
GPG Key ID: 216DD5F8CA6618A1

View File

@ -27446,10 +27446,7 @@ in
wrapNeovimUnstable = callPackage ../applications/editors/neovim/wrapper.nix { };
wrapNeovim = neovim-unwrapped: lib.makeOverridable (neovimUtils.legacyWrapper neovim-unwrapped);
neovim-unwrapped = callPackage ../applications/editors/neovim {
lua =
# neovim doesn't work with luajit on aarch64: https://github.com/neovim/neovim/issues/7879
if stdenv.isAarch64 then lua5_1 else
luajit;
lua = luajit;
};
neovimUtils = callPackage ../applications/editors/neovim/utils.nix { };