feat: add luarc-to-json and mk-luarc helpers

This commit is contained in:
Marc Jakobi 2024-02-22 23:07:20 +01:00
parent b674635702
commit 6c5c893f0d

View file

@ -14,7 +14,7 @@
flake-parts.lib.mkFlake {inherit inputs;} { flake-parts.lib.mkFlake {inherit inputs;} {
flake = { flake = {
overlays.default = final: prev: { overlays.default = final: prev: {
mk-luarc-json = { mk-luarc = {
# list of plugins that have a /lua directory # list of plugins that have a /lua directory
nvim ? final.neovim-unwrapped, nvim ? final.neovim-unwrapped,
neodev-types ? "stable", neodev-types ? "stable",
@ -29,7 +29,7 @@
then "${plugin}/lua" then "${plugin}/lua"
else "${plugin}/lib/lua/5.1") else "${plugin}/lib/lua/5.1")
plugins; plugins;
luarc = { in {
runtime.version = "LuaJIT"; runtime.version = "LuaJIT";
Lua = { Lua = {
globals = [ globals = [
@ -59,8 +59,7 @@
}; };
}; };
}; };
in luarc-to-json = luarc: final.runCommand ".luarc.json" {
final.runCommand ".luarc.json" {
buildInputs = [ buildInputs = [
final.jq final.jq
]; ];
@ -71,6 +70,7 @@
jq . <"$rawJSONPath" jq . <"$rawJSONPath"
} >$out } >$out
''; '';
mk-luarc-json = attrs: final.luarc-to-json (final.mk-luarc attrs);
}; };
}; };
}; };