1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-15 06:52:48 +01:00
nixvim/plugins/by-name/godot/default.nix
saygo-png c4b27080a6 treewide: infer packPathName menial work
Signed-off-by: saygo-png <saygo.mail@proton.me>
2025-09-27 23:49:59 +00:00

34 lines
654 B
Nix

{
lib,
helpers,
...
}:
with lib;
lib.nixvim.plugins.mkVimPlugin {
name = "godot";
package = "vim-godot";
globalPrefix = "godot_";
description = "A Neovim plugin for Godot game engine integration.";
maintainers = [ maintainers.GaetanLepage ];
dependencies = [ "godot" ];
imports = [
# TODO: added 2025-04-07, remove after 25.05
(lib.nixvim.mkRemovedPackageOptionModule {
plugin = "godot";
packageName = "godot";
})
];
settingsOptions = {
executable = helpers.defaultNullOpts.mkStr "godot" ''
Path to the `godot` executable.
'';
};
settingsExample = {
executable = "godot";
};
}