df5691d677
So that lua packages can override it without having to resort to setting makeFlagsArray in preBuild.
24 lines
474 B
Nix
24 lines
474 B
Nix
lua:
|
|
|
|
{ buildInputs ? [], disabled ? false, ... } @ attrs:
|
|
|
|
if disabled then
|
|
throw "${attrs.name} not supported by interpreter lua-${lua.luaversion}"
|
|
else
|
|
lua.stdenv.mkDerivation (
|
|
{
|
|
makeFlags = [
|
|
"PREFIX=$(out)"
|
|
"LUA_LIBDIR=$(out)/lib/lua/${lua.luaversion}"
|
|
"LUA_INC=-I${lua}/include"
|
|
];
|
|
}
|
|
//
|
|
attrs
|
|
//
|
|
{
|
|
name = "lua${lua.luaversion}-" + attrs.name;
|
|
buildInputs = buildInputs ++ [ lua ];
|
|
}
|
|
)
|