2025-02-10 21:55:08 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
lua,
|
|
|
|
lualinux,
|
|
|
|
writeScriptBin,
|
|
|
|
linotify,
|
|
|
|
anoia,
|
|
|
|
netlink-lua,
|
|
|
|
fennel,
|
2023-07-04 21:58:51 +00:00
|
|
|
}:
|
2025-02-10 21:55:08 +00:00
|
|
|
let
|
|
|
|
packages = [
|
|
|
|
linotify
|
|
|
|
anoia
|
|
|
|
fennel
|
|
|
|
lualinux
|
|
|
|
netlink-lua
|
|
|
|
lua.pkgs.readline
|
|
|
|
];
|
|
|
|
join = ps: builtins.concatStringsSep ";" ps;
|
|
|
|
luapath = join (
|
|
|
|
builtins.map (
|
|
|
|
f: "${f}/share/lua/${lua.luaversion}/?.lua;" + "${f}/share/lua/${lua.luaversion}/?/init.lua"
|
|
|
|
) packages
|
|
|
|
);
|
|
|
|
luacpath = join (builtins.map (f: "${f}/lib/lua/${lua.luaversion}/?.so") packages);
|
2023-07-04 21:58:51 +00:00
|
|
|
|
2025-02-10 21:55:08 +00:00
|
|
|
in
|
|
|
|
writeScriptBin "fennelrepl" ''
|
|
|
|
#!${lua}/bin/lua
|
|
|
|
package.path = ${lib.strings.escapeShellArg luapath} .. ";" .. package.path
|
|
|
|
package.cpath = ${lib.strings.escapeShellArg luacpath} .. ";" .. (package.cpath or "")
|
|
|
|
local fennel = require "fennel"
|
|
|
|
local specials = require("fennel.specials")
|
|
|
|
table.insert(package.loaders or package.searchers,1, fennel.searcher)
|
|
|
|
fennel['macro-path'] = "${anoia.dev}/share/lua/${lua.luaversion}/?.fnl;" .. fennel['macro-path']
|
2023-09-08 23:11:35 +00:00
|
|
|
|
2025-02-10 21:55:08 +00:00
|
|
|
local function eval_as_test(f)
|
|
|
|
local g = (specials["make-compiler-env"]())._G
|
|
|
|
g["RUNNING_TESTS"] = true
|
|
|
|
return fennel.dofile(f, {correlate = true, compilerEnv = g})
|
|
|
|
end
|
2024-08-24 20:50:30 +00:00
|
|
|
|
2025-02-10 21:55:08 +00:00
|
|
|
local more_fennel = os.getenv("FENNEL_PATH")
|
|
|
|
if more_fennel then
|
|
|
|
fennel.path = more_fennel .. ";" .. fennel.path
|
|
|
|
end
|
|
|
|
if #arg > 0 then
|
|
|
|
if arg[1] == '--test' then
|
|
|
|
eval_as_test(arg[2])
|
2023-07-08 21:14:40 +00:00
|
|
|
else
|
2025-02-10 21:55:08 +00:00
|
|
|
script = table.remove(arg, 1)
|
|
|
|
fennel.dofile(script, {correlate = true}, arg)
|
2023-07-08 21:14:40 +00:00
|
|
|
end
|
2025-02-10 21:55:08 +00:00
|
|
|
else
|
|
|
|
fennel.repl()
|
|
|
|
end
|
|
|
|
''
|