8ac5e011d6
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
15 lines
376 B
Nix
15 lines
376 B
Nix
{ runCommand, lib, }:
|
|
|
|
LuaPathSearchPaths: LuaCPathSearchPaths:
|
|
|
|
let
|
|
hook = ./setup-hook.sh;
|
|
in runCommand "lua-setup-hook.sh" {
|
|
# hum doesn't seem to like caps !! BUG ?
|
|
luapathsearchpaths=lib.escapeShellArgs LuaPathSearchPaths;
|
|
luacpathsearchpaths=lib.escapeShellArgs LuaCPathSearchPaths;
|
|
} ''
|
|
cp ${hook} hook.sh
|
|
substituteAllInPlace hook.sh
|
|
mv hook.sh $out
|
|
''
|