forked from dan/liminix
* [] is now [ ] * {} is now { } * commas in arglists go at end of line not beginning In short, I ran the whole thing through nixfmt-rfc-style but only accepted about 30% of its changes. I might grow accustomed to more of it over time
39 lines
1.1 KiB
Nix
39 lines
1.1 KiB
Nix
{
|
|
lua,
|
|
lib,
|
|
fennel,
|
|
stdenv,
|
|
}:
|
|
name:
|
|
{
|
|
packages ? [ ],
|
|
correlate ? false,
|
|
mainFunction ? null,
|
|
}:
|
|
source:
|
|
let
|
|
luapath = builtins.map (
|
|
f: "${f}/share/lua/${lua.luaversion}/?.lua;" + "${f}/share/lua/${lua.luaversion}/?/init.lua;"
|
|
) packages;
|
|
luacpath = builtins.map (f: "${f}/lib/lua/${lua.luaversion}/?.so;") packages;
|
|
luaFlags = lib.optionalString (mainFunction != null) "-e dofile(arg[0]).${mainFunction}()";
|
|
in
|
|
stdenv.mkDerivation {
|
|
inherit name;
|
|
src = ./.;
|
|
nativeBuildInputs = [ fennel ];
|
|
buildPhase = ''
|
|
(
|
|
echo "#!${lua}/bin/lua ${luaFlags}"
|
|
echo "package.path = ${lib.strings.escapeShellArg (builtins.concatStringsSep "" luapath)} .. package.path"
|
|
echo "package.cpath = ${lib.strings.escapeShellArg (builtins.concatStringsSep "" luacpath)} .. package.cpath"
|
|
echo "local ok, stdlib = pcall(require,'posix.stdlib'); if ok then stdlib.setenv('PATH',${lib.escapeShellArg (lib.makeBinPath packages)} .. \":\" .. os.getenv('PATH')) end"
|
|
fennel ${if correlate then "--correlate" else ""} --compile ${source}
|
|
) > ${name}.lua
|
|
'';
|
|
installPhase = ''
|
|
cp ${name}.lua $out
|
|
chmod +x $out
|
|
'';
|
|
}
|