mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-23 01:08:43 +02:00
plugins: migrate defaultPackage
-> package
Migrate all users of `mkVimPlugin` and `mkNeovimPlugin` to use the new `package` argument instead of the old `defaultPackage` argument.
This commit is contained in:
parent
285f6cbd7b
commit
1fd4b6c739
148 changed files with 126 additions and 277 deletions
|
@ -1,6 +1,5 @@
|
|||
{
|
||||
lib,
|
||||
pkgs,
|
||||
helpers,
|
||||
config,
|
||||
...
|
||||
|
@ -9,7 +8,7 @@ with lib;
|
|||
helpers.vim-plugin.mkVimPlugin {
|
||||
name = "haskell-scope-highlighting";
|
||||
originalName = "haskell-scope-highlighting.nvim";
|
||||
defaultPackage = pkgs.vimPlugins.haskell-scope-highlighting-nvim;
|
||||
package = "haskell-scope-highlighting-nvim";
|
||||
|
||||
maintainers = [ lib.maintainers.GaetanLepage ];
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue