Revert "vimPlugins.notational-fzf-vim: Fix missing runtime deps"

This reverts commit 976aa97435.
This commit is contained in:
Brett Lyons 2020-02-25 10:51:26 -07:00 committed by Jon
parent f4d71e2e73
commit 745dbf46af

View File

@ -28,9 +28,6 @@
# vCoolor dependency # vCoolor dependency
, gnome3 , gnome3
# notational-fzf-vim dependencies
, ripgrep
}: }:
self: super: { self: super: {
@ -252,17 +249,6 @@ self: super: {
ncm2-ultisnips = super.ncm2-ultisnips.overrideAttrs(old: { ncm2-ultisnips = super.ncm2-ultisnips.overrideAttrs(old: {
dependencies = with super; [ ultisnips ]; dependencies = with super; [ ultisnips ];
}); });
notational-fzf-vim = super.notational-fzf-vim.overrideAttrs(old: {
dependencies = with self; [ fzf-vim ];
patchPhase = ''
substituteInPlace plugin/notational_fzf.vim \
--replace "'rg'" "'${ripgrep}/bin/rg'" \
--replace \
"let s:python_executable = executable('pypy3') ? 'pypy3' : 'python3'" \
"let s:python_executable = '${python3}/bin/python3'"
'';
});
fzf-vim = super.fzf-vim.overrideAttrs(old: { fzf-vim = super.fzf-vim.overrideAttrs(old: {
dependencies = [ self.fzfWrapper ]; dependencies = [ self.fzfWrapper ];