mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 15:33:13 +00:00
28 lines
666 B
Nix
28 lines
666 B
Nix
{ lua, writeText, toLuaModule }:
|
|
|
|
{ disabled ? false
|
|
, propagatedBuildInputs ? [ ]
|
|
, makeFlags ? [ ]
|
|
, ...
|
|
} @ attrs:
|
|
|
|
if disabled then
|
|
throw "${attrs.name} not supported by interpreter lua-${lua.luaversion}"
|
|
else
|
|
toLuaModule (lua.stdenv.mkDerivation (
|
|
attrs // {
|
|
name = "lua${lua.luaversion}-" + attrs.pname + "-" + attrs.version;
|
|
|
|
makeFlags = [
|
|
"PREFIX=$(out)"
|
|
"LUA_INC=-I${lua}/include"
|
|
"LUA_LIBDIR=$(out)/lib/lua/${lua.luaversion}"
|
|
"LUA_VERSION=${lua.luaversion}"
|
|
] ++ makeFlags;
|
|
|
|
propagatedBuildInputs = propagatedBuildInputs ++ [
|
|
lua # propagate it for its setup-hook
|
|
];
|
|
}
|
|
))
|