nix-gen-luarc-json/flake.nix

115 lines
3.3 KiB
Nix
Raw Normal View History

2024-02-22 13:48:54 -08:00
{
description = "Generate a .luarc.json for Lua/Neovim devShells";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
flake-parts.url = "github:hercules-ci/flake-parts";
};
outputs = inputs @ {
self,
nixpkgs,
flake-parts,
}:
flake-parts.lib.mkFlake {inherit inputs;} {
2024-02-22 14:42:49 -08:00
systems = [
"x86_64-linux"
"x86_64-darwin"
"aarch64-darwin"
"aarch64-linux"
];
perSystem = {system, ...}: let
pkgs = import nixpkgs {
inherit system;
overlays = [
self.overlays.default
];
};
luarc = pkgs.mk-luarc-json {
plugins = with pkgs.vimPlugins; [telescope-nvim fidget-nvim];
};
in {
devShells.default = pkgs.mkShell {
shellHook = ''
ln -fs ${pkgs.luarc-to-json luarc} .luarc.json
'';
};
};
2024-02-22 13:48:54 -08:00
flake = {
overlays.default = final: prev: {
mk-luarc = {
2024-02-22 13:48:54 -08:00
# list of plugins that have a /lua directory
nvim ? final.neovim-unwrapped,
neodev-types ? "stable",
plugins ? [],
lua-version ? "5.1",
2024-02-23 03:27:34 -08:00
disabled-diagnostics ? [],
2024-02-22 13:48:54 -08:00
}: let
pluginPackages =
map (
x:
if x ? plugin
then x.plugin
else x
)
plugins;
partitions = builtins.partition (plugin:
plugin.vimPlugin
or false
2024-02-23 03:47:35 -08:00
|| plugin.pname or "" == "nvim-treesitter")
pluginPackages;
2024-02-22 14:42:49 -08:00
nvim-plugins = partitions.right;
rocks = partitions.wrong;
2024-02-22 14:42:49 -08:00
plugin-luadirs = builtins.map (plugin: "${plugin}/lua") nvim-plugins;
pkg-libdirs = builtins.map (pkg: "${pkg}/lib/lua/${lua-version}") rocks;
pkg-sharedirs = builtins.map (pkg: "${pkg}/share/lua/${lua-version}") rocks;
in {
runtime.version = "LuaJIT";
Lua = {
globals = [
"vim"
];
workspace = {
library =
[
"${nvim}/share/nvim/runtime/lua"
"${final.vimPlugins.neodev-nvim}/types/${neodev-types}"
"\${3rd}/busted/library"
"\${3rd}/luassert/library"
]
++ plugin-luadirs
++ pkg-libdirs
++ pkg-sharedirs;
ignoreDir = [
".git"
".github"
".direnv"
"result"
"nix"
"doc"
2024-02-22 13:48:54 -08:00
];
};
diagnostics = {
libraryFiles = "Disable";
2024-02-23 03:27:34 -08:00
disable = disabled-diagnostics;
2024-02-22 13:48:54 -08:00
};
};
};
2024-02-22 14:42:49 -08:00
luarc-to-json = luarc:
final.runCommand ".luarc.json" {
2024-02-22 13:48:54 -08:00
buildInputs = [
final.jq
];
passAsFile = ["rawJSON"];
rawJSON = builtins.toJSON luarc;
} ''
{
jq . <"$rawJSONPath"
} >$out
'';
mk-luarc-json = attrs: final.luarc-to-json (final.mk-luarc attrs);
2024-02-22 13:48:54 -08:00
};
};
};
}