mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-23 09:18:38 +02:00
Migrate all users of `mkVimPlugin` and `mkNeovimPlugin` to use the new `package` argument instead of the old `defaultPackage` argument.
15 lines
232 B
Nix
15 lines
232 B
Nix
{
|
|
lib,
|
|
helpers,
|
|
...
|
|
}:
|
|
with lib;
|
|
helpers.neovim-plugin.mkNeovimPlugin {
|
|
name = "preview";
|
|
originalName = "Preview.nvim";
|
|
package = "Preview-nvim";
|
|
|
|
hasSettings = false;
|
|
|
|
maintainers = [ maintainers.GaetanLepage ];
|
|
}
|