Skip to content

Commit b61a10a

Browse files
committed
build(nix): use buildVimPlugin
1 parent 93bd8fb commit b61a10a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

nix/ci-overlay.nix

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ with final.lib;
77
with final.stdenv; let
88
nvim-nightly = final.neovim-nightly;
99

10-
plenary-plugin = final.pkgs.vimUtils.buildVimPluginFrom2Nix {
10+
plenary-plugin = final.pkgs.vimUtils.buildVimPlugin {
1111
name = "plenary.nvim";
1212
src = plenary-nvim;
1313
};

nix/plugin-overlay.nix

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name,
33
self,
44
}: final: prev: {
5-
haskell-snippets-nvim = final.pkgs.vimUtils.buildVimPluginFrom2Nix {
5+
haskell-snippets-nvim = final.pkgs.vimUtils.buildVimPlugin {
66
inherit name;
77
src = self;
88
};

0 commit comments

Comments
 (0)