neovim: fix build on darwin, cleanup lua paths
fixes #16152 The cmake script had trouble finding the lua paths, this sets them using “luaPackages.getLuaPath” and “luaPackages.getLuaCPath”.
This commit is contained in:
@@ -19,6 +19,11 @@ let
|
||||
inherit lua;
|
||||
inherit (stdenv.lib) maintainers;
|
||||
|
||||
# helper functions for dealing with LUA_PATH and LUA_CPATH
|
||||
getPath = lib : type : "${lib}/lib/lua/${lua.luaversion}/?.${type};${lib}/share/lua/${lua.luaversion}/?.${type}";
|
||||
getLuaPath = lib : getPath lib "lua";
|
||||
getLuaCPath = lib : getPath lib "so";
|
||||
|
||||
#define build lua package function
|
||||
buildLuaPackage = callPackage ../development/lua-modules/generic lua;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user