Skip to content

Commit

Permalink
vimPlugins.telescope-zf-native-nvim: add telescope-nvim dependency
Browse files Browse the repository at this point in the history
also add plenary-nvim dependency to telescope-nvim and fix plenary-nvim
check phase
  • Loading branch information
bandithedoge committed Dec 29, 2024
1 parent 1876bd9 commit 8e42754
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions pkgs/vimPlugins/_overrides.nix
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,16 @@
hover-nvim = prev.hover-nvim.overrideAttrs (_: {
doCheck = false;
});

telescope-zf-native-nvim = prev.telescope-zf-native-nvim.overrideAttrs (_: {
dependencies = [final.telescope-nvim];
});

telescope-nvim = prev.telescope-nvim.overrideAttrs (_: {
dependencies = [final.plenary-nvim];
});

plenary-nvim = prev.plenary-nvim.overrideAttrs (_: {
nativeCheckInputs = [pkgs.vimPlugins.rocks-nvim];
});
}

0 comments on commit 8e42754

Please sign in to comment.