Skip to content

Commit

Permalink
chore(nix): use buildVimPlugin
Browse files Browse the repository at this point in the history
  • Loading branch information
mrcjkb committed Oct 2, 2023
1 parent 6f8f89c commit ce46c49
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions nix/ci-overlay.nix
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ with final.lib;
with final.stdenv; let
nvim-nightly = final.neovim-nightly;

plenary-plugin = final.pkgs.vimUtils.buildVimPluginFrom2Nix {
plenary-plugin = final.pkgs.vimUtils.buildVimPlugin {
name = "plenary.nvim";
src = plenary-nvim;
};

neotest-plugin = final.pkgs.vimUtils.buildVimPluginFrom2Nix {
neotest-plugin = final.pkgs.vimUtils.buildVimPlugin {
name = "neotest";
src = neotest;
};
Expand Down
2 changes: 1 addition & 1 deletion nix/nvim-plugin-overlay.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name,
self,
}: final: prev: {
neotest-haskell-dev = prev.vimUtils.buildVimPluginFrom2Nix {
neotest-haskell-dev = prev.vimUtils.buildVimPlugin {
inherit name;
src = self;
};
Expand Down

0 comments on commit ce46c49

Please sign in to comment.