nix-community.nixvim/plugins/languages/nix.nix
Matt Sturgeon 1fd4b6c739
plugins: migrate defaultPackage -> package
Migrate all users of `mkVimPlugin` and `mkNeovimPlugin` to use the new
`package` argument instead of the old `defaultPackage` argument.
2024-09-04 03:29:34 +01:00

12 lines
182 B
Nix

{
lib,
helpers,
...
}:
helpers.vim-plugin.mkVimPlugin {
name = "nix";
originalName = "vim-nix";
package = "vim-nix";
maintainers = [ lib.maintainers.GaetanLepage ];
}