nix-gen-luarc-json/flake.nix
2024-08-19 22:05:10 +02:00

141 lines
4 KiB
Nix

{
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";
luvit-meta = {
url = "github:Bilal2453/luvit-meta";
flake = false;
};
git-hooks = {
url = "github:cachix/git-hooks.nix";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = inputs @ {
self,
nixpkgs,
flake-parts,
luvit-meta,
git-hooks,
}:
flake-parts.lib.mkFlake {inherit inputs;} {
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];
};
git-hooks-check = git-hooks.lib.${system}.run {
src = self;
hooks = {
alejandra.enable = true;
editorconfig-checker.enable = true;
};
};
in {
devShells.default = pkgs.mkShell {
name = "gen-luarc devShell";
buildInputs = self.checks.${system}.git-hooks-check.enabledPackages;
shellHook = ''
ln -fs ${pkgs.luarc-to-json luarc} .luarc.json
'';
};
checks = rec {
default = git-hooks-check;
inherit git-hooks-check;
};
};
flake = {
overlays.default = final: prev: let
lib = final.lib;
in {
mk-luarc = {
# list of plugins that have a /lua directory
nvim ? final.neovim-unwrapped,
plugins ? [],
meta ? {
luvit = true;
},
lua-version ? "5.1",
disabled-diagnostics ? [],
}: let
pluginPackages =
map (
x:
if x ? plugin
then x.plugin
else x
)
plugins;
partitions = builtins.partition (plugin:
plugin.vimPlugin
or false
|| plugin.pname or "" == "nvim-treesitter")
pluginPackages;
nvim-plugins = partitions.right;
rocks = partitions.wrong;
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"
"\${3rd}/busted/library"
"\${3rd}/luassert/library"
]
++ plugin-luadirs
++ pkg-libdirs
++ pkg-sharedirs
++ (lib.optional (meta.luvit or false) "${luvit-meta}/library");
ignoreDir = [
".git"
".github"
".direnv"
"result"
"nix"
"doc"
];
};
diagnostics = {
libraryFiles = "Disable";
disable = disabled-diagnostics;
};
};
};
luarc-to-json = luarc:
final.runCommand ".luarc.json" {
buildInputs = [
final.jq
];
passAsFile = ["rawJSON"];
rawJSON = builtins.toJSON luarc;
} ''
{
jq . <"$rawJSONPath"
} >$out
'';
mk-luarc-json = attrs: final.luarc-to-json (final.mk-luarc attrs);
};
};
};
}