python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / interpreters / lua-5 / wrap-lua.nix
blob049afcd6116d91b1ee4ed2312c2dfe7cd8924f94
1 { lib
2 , lua
3 , makeSetupHook
4 , makeWrapper
5 }:
7 # defined in trivial-builders.nix
8 # imported as wrapLua in lua-packages.nix and passed to build-lua-derivation to be used as buildInput
9 makeSetupHook {
10   deps = makeWrapper;
11   substitutions.executable = lua.interpreter;
12   substitutions.lua = lua;
13   substitutions.LuaPathSearchPaths = lib.escapeShellArgs lua.LuaPathSearchPaths;
14   substitutions.LuaCPathSearchPaths = lib.escapeShellArgs lua.LuaPathSearchPaths;
15 } ./wrap.sh