mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-22 08:53:28 +02:00
Migrate all users of `mkVimPlugin` and `mkNeovimPlugin` to use the new `package` argument instead of the old `defaultPackage` argument.
12 lines
197 B
Nix
12 lines
197 B
Nix
{
|
|
lib,
|
|
helpers,
|
|
...
|
|
}:
|
|
helpers.vim-plugin.mkVimPlugin {
|
|
name = "surround";
|
|
originalName = "surround.vim";
|
|
package = "vim-surround";
|
|
|
|
maintainers = [ lib.maintainers.GaetanLepage ];
|
|
}
|