mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
beef4b95a9
propagatedBuildInputs was completely overridden in the process
29 lines
597 B
Nix
29 lines
597 B
Nix
{ lua, writeText, toLuaModule }:
|
|
|
|
{ disabled ? false
|
|
, propagatedBuildInputs ? [ ]
|
|
, ...
|
|
} @ attrs:
|
|
|
|
if disabled then
|
|
throw "${attrs.name} not supported by interpreter lua-${lua.luaversion}"
|
|
else
|
|
toLuaModule (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;
|
|
propagatedBuildInputs = propagatedBuildInputs ++ [
|
|
lua # propagate it for its setup-hook
|
|
];
|
|
}
|
|
))
|