mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
c4519cf8a6
* lua: add withPackages function First step towards more automation similar to the haskell backend. Follow up of https://github.com/NixOS/nixpkgs/pull/33903
16 lines
376 B
Nix
16 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
|
|
''
|