2024-09-22 19:52:10 +00:00
|
|
|
{
|
|
|
|
inputs,
|
2024-07-11 22:49:44 +00:00
|
|
|
lib,
|
2024-09-22 19:52:10 +00:00
|
|
|
}: {
|
|
|
|
pkgs,
|
2023-02-01 19:11:37 +00:00
|
|
|
extraSpecialArgs ? {},
|
2024-09-22 19:52:10 +00:00
|
|
|
modules ? [],
|
|
|
|
# deprecated
|
2024-04-20 20:42:48 +00:00
|
|
|
extraModules ? [],
|
2024-09-22 19:52:10 +00:00
|
|
|
configuration ? {},
|
2023-02-01 19:11:37 +00:00
|
|
|
}: let
|
2024-07-13 15:05:21 +00:00
|
|
|
inherit (pkgs) vimPlugins;
|
|
|
|
inherit (lib.strings) isString toString;
|
|
|
|
inherit (lib.lists) filter map concatLists;
|
2023-02-01 19:11:37 +00:00
|
|
|
|
2024-04-20 20:42:48 +00:00
|
|
|
# import modules.nix with `check`, `pkgs` and `lib` as arguments
|
|
|
|
# check can be disabled while calling this file is called
|
|
|
|
# to avoid checking in all modules
|
2024-09-22 19:52:10 +00:00
|
|
|
nvimModules = import ./modules.nix {inherit pkgs lib;};
|
2023-02-01 19:11:37 +00:00
|
|
|
|
2024-04-20 20:42:48 +00:00
|
|
|
# evaluate the extended library with the modules
|
|
|
|
# optionally with any additional modules passed by the user
|
2024-07-11 22:49:44 +00:00
|
|
|
module = lib.evalModules {
|
2024-08-12 00:08:53 +00:00
|
|
|
specialArgs = extraSpecialArgs // {modulesPath = toString ./.;};
|
2024-09-22 19:52:10 +00:00
|
|
|
modules = concatLists [
|
|
|
|
nvimModules
|
|
|
|
modules
|
|
|
|
(lib.optional (configuration != {}) (lib.warn ''
|
|
|
|
nvf: passing 'configuration' to lib.neovimConfiguration is deprecated.
|
|
|
|
''
|
|
|
|
configuration))
|
|
|
|
|
|
|
|
(lib.optionals (extraModules != []) (lib.warn ''
|
|
|
|
nvf: passing 'extraModules' to lib.neovimConfiguration is deprecated, use 'modules' instead.
|
|
|
|
''
|
|
|
|
extraModules))
|
|
|
|
];
|
2023-02-01 19:11:37 +00:00
|
|
|
};
|
|
|
|
|
2024-04-20 20:42:48 +00:00
|
|
|
# alias to the internal configuration
|
2023-11-06 09:33:38 +00:00
|
|
|
vimOptions = module.config.vim;
|
|
|
|
|
2024-08-12 00:08:53 +00:00
|
|
|
noBuildPlug = {pname, ...} @ attrs: let
|
|
|
|
src = inputs."plugin-${attrs.pname}";
|
|
|
|
in
|
|
|
|
{
|
|
|
|
version = src.shortRev or src.shortDirtyRev or "dirty";
|
|
|
|
outPath = src;
|
|
|
|
passthru.vimPlugin = false;
|
|
|
|
}
|
|
|
|
// attrs;
|
|
|
|
|
2024-04-20 20:42:48 +00:00
|
|
|
# build a vim plugin with the given name and arguments
|
|
|
|
# if the plugin is nvim-treesitter, warn the user to use buildTreesitterPlug
|
|
|
|
# instead
|
2024-08-11 21:10:55 +00:00
|
|
|
buildPlug = attrs: let
|
|
|
|
src = inputs."plugin-${attrs.pname}";
|
2024-07-13 22:04:10 +00:00
|
|
|
in
|
2024-08-12 00:08:53 +00:00
|
|
|
pkgs.vimUtils.buildVimPlugin (
|
|
|
|
{
|
2024-07-21 15:37:45 +00:00
|
|
|
version = src.shortRev or src.shortDirtyRev or "dirty";
|
2024-08-11 21:10:55 +00:00
|
|
|
inherit src;
|
2024-07-21 15:37:45 +00:00
|
|
|
}
|
2024-08-12 00:08:53 +00:00
|
|
|
// attrs
|
|
|
|
);
|
2024-07-13 22:04:10 +00:00
|
|
|
|
2023-02-01 19:11:37 +00:00
|
|
|
buildTreesitterPlug = grammars: vimPlugins.nvim-treesitter.withPlugins (_: grammars);
|
|
|
|
|
2024-08-11 21:10:55 +00:00
|
|
|
pluginBuilders = {
|
|
|
|
nvim-treesitter = buildTreesitterPlug vimOptions.treesitter.grammars;
|
2024-08-12 00:08:53 +00:00
|
|
|
flutter-tools-patched = buildPlug {
|
|
|
|
pname = "flutter-tools";
|
|
|
|
patches = [../patches/flutter-tools.patch];
|
|
|
|
};
|
2024-08-11 21:10:55 +00:00
|
|
|
};
|
|
|
|
|
2023-02-01 19:11:37 +00:00
|
|
|
buildConfigPlugins = plugins:
|
2024-08-12 00:08:53 +00:00
|
|
|
map (
|
2024-08-11 21:10:55 +00:00
|
|
|
plug:
|
|
|
|
if (isString plug)
|
2024-08-12 00:08:53 +00:00
|
|
|
then pluginBuilders.${plug} or (noBuildPlug {pname = plug;})
|
2024-08-11 21:10:55 +00:00
|
|
|
else plug
|
2024-08-12 00:08:53 +00:00
|
|
|
) (filter (f: f != null) plugins);
|
2023-02-01 19:11:37 +00:00
|
|
|
|
2024-04-20 20:42:48 +00:00
|
|
|
# built (or "normalized") plugins that are modified
|
|
|
|
builtStartPlugins = buildConfigPlugins vimOptions.startPlugins;
|
|
|
|
builtOptPlugins = map (package: {
|
|
|
|
plugin = package;
|
2024-07-09 23:37:07 +00:00
|
|
|
optional = true;
|
2024-04-20 20:42:48 +00:00
|
|
|
}) (buildConfigPlugins vimOptions.optPlugins);
|
|
|
|
|
2024-04-21 00:21:48 +00:00
|
|
|
# additional Lua and Python3 packages, mapped to their respective functions
|
2024-08-12 00:08:53 +00:00
|
|
|
# to conform to the format mnw expects. end user should
|
2024-04-21 00:21:48 +00:00
|
|
|
# only ever need to pass a list of packages, which are modified
|
|
|
|
# here
|
2024-04-20 20:42:48 +00:00
|
|
|
extraLuaPackages = ps: map (x: ps.${x}) vimOptions.luaPackages;
|
2024-04-20 23:23:07 +00:00
|
|
|
extraPython3Packages = ps: map (x: ps.${x}) vimOptions.python3Packages;
|
2024-04-20 20:42:48 +00:00
|
|
|
|
2024-07-13 15:05:21 +00:00
|
|
|
# Wrap the user's desired (unwrapped) Neovim package with arguments that'll be used to
|
|
|
|
# generate a wrapped Neovim package.
|
2024-07-14 03:47:21 +00:00
|
|
|
neovim-wrapped = inputs.mnw.lib.wrap pkgs {
|
2024-07-13 15:05:21 +00:00
|
|
|
neovim = vimOptions.package;
|
2024-08-12 00:08:53 +00:00
|
|
|
plugins = builtStartPlugins ++ builtOptPlugins;
|
2024-07-13 22:04:10 +00:00
|
|
|
appName = "nvf";
|
2024-07-13 15:05:21 +00:00
|
|
|
extraBinPath = vimOptions.extraPackages;
|
2024-07-20 08:30:48 +00:00
|
|
|
initLua = vimOptions.builtLuaConfigRC;
|
|
|
|
luaFiles = vimOptions.extraLuaFiles;
|
2024-04-21 00:21:48 +00:00
|
|
|
|
2024-04-20 23:23:07 +00:00
|
|
|
inherit (vimOptions) viAlias vimAlias withRuby withNodeJs withPython3;
|
2024-07-13 15:05:21 +00:00
|
|
|
inherit extraLuaPackages extraPython3Packages;
|
2024-04-21 00:21:48 +00:00
|
|
|
};
|
2024-07-20 13:01:40 +00:00
|
|
|
|
2024-08-11 21:10:55 +00:00
|
|
|
dummyInit = pkgs.writeText "nvf-init.lua" vimOptions.builtLuaConfigRC;
|
2024-07-20 13:01:40 +00:00
|
|
|
# Additional helper scripts for printing and displaying nvf configuration
|
|
|
|
# in your commandline.
|
2024-08-11 21:10:55 +00:00
|
|
|
printConfig = pkgs.writers.writeDashBin "nvf-print-config" "cat ${dummyInit}";
|
|
|
|
printConfigPath = pkgs.writers.writeDashBin "nvf-print-config-path" "echo -n ${dummyInit}";
|
2023-02-01 19:11:37 +00:00
|
|
|
in {
|
|
|
|
inherit (module) options config;
|
|
|
|
inherit (module._module.args) pkgs;
|
2024-04-20 20:42:48 +00:00
|
|
|
|
2024-07-20 13:01:40 +00:00
|
|
|
# Expose wrapped neovim-package for userspace
|
|
|
|
# or module consumption.
|
|
|
|
neovim = pkgs.symlinkJoin {
|
|
|
|
name = "nvf-with-helpers";
|
|
|
|
paths = [neovim-wrapped printConfig printConfigPath];
|
2024-08-11 21:10:55 +00:00
|
|
|
postBuild = "echo Helpers added";
|
2024-07-20 13:55:56 +00:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Wrapped version of Neovim with additional helper scripts";
|
|
|
|
mainProgram = "nvim";
|
|
|
|
};
|
2024-07-20 13:01:40 +00:00
|
|
|
};
|
2023-02-01 19:11:37 +00:00
|
|
|
}
|