mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-22 17:03:31 +02:00
We used to only think of it as the plugin repo's name, but we have been needing to use it for the name of the plugin's packpath location.
34 lines
616 B
Nix
34 lines
616 B
Nix
{
|
|
lib,
|
|
helpers,
|
|
pkgs,
|
|
...
|
|
}:
|
|
with lib;
|
|
helpers.vim-plugin.mkVimPlugin {
|
|
name = "godot";
|
|
packPathName = "vim-godot";
|
|
package = "vim-godot";
|
|
globalPrefix = "godot_";
|
|
|
|
maintainers = [ maintainers.GaetanLepage ];
|
|
|
|
extraOptions = {
|
|
godotPackage = lib.mkPackageOption pkgs "godot" {
|
|
nullable = true;
|
|
default = "godot_4";
|
|
};
|
|
};
|
|
|
|
settingsOptions = {
|
|
executable = helpers.defaultNullOpts.mkStr "godot" ''
|
|
Path to the `godot` executable.
|
|
'';
|
|
};
|
|
|
|
settingsExample = {
|
|
executable = "godot";
|
|
};
|
|
|
|
extraConfig = cfg: { extraPackages = [ cfg.godotPackage ]; };
|
|
}
|