about summary refs log tree commit diff
path: root/pkgs/misc/vim-plugins
diff options
context:
space:
mode:
authorBrett Lyons <blyons@fastmail.com>2020-02-25 10:51:26 -0700
committerJon <jonringer@users.noreply.github.com>2020-03-02 09:16:06 -0800
commit745dbf46afcecc07cdfea3bb6bdecc17bc808317 (patch)
tree282340b056006a4cc22057deb542f923827640f6 /pkgs/misc/vim-plugins
parentf4d71e2e732b4e947cc1aa9bb3bb3791465fdb9c (diff)
downloadnixlib-745dbf46afcecc07cdfea3bb6bdecc17bc808317.tar
nixlib-745dbf46afcecc07cdfea3bb6bdecc17bc808317.tar.gz
nixlib-745dbf46afcecc07cdfea3bb6bdecc17bc808317.tar.bz2
nixlib-745dbf46afcecc07cdfea3bb6bdecc17bc808317.tar.lz
nixlib-745dbf46afcecc07cdfea3bb6bdecc17bc808317.tar.xz
nixlib-745dbf46afcecc07cdfea3bb6bdecc17bc808317.tar.zst
nixlib-745dbf46afcecc07cdfea3bb6bdecc17bc808317.zip
Revert "vimPlugins.notational-fzf-vim: Fix missing runtime deps"
This reverts commit 976aa974354aa7f05d341a33e7c6854a8410f172.
Diffstat (limited to 'pkgs/misc/vim-plugins')
-rw-r--r--pkgs/misc/vim-plugins/overrides.nix14
1 files changed, 0 insertions, 14 deletions
diff --git a/pkgs/misc/vim-plugins/overrides.nix b/pkgs/misc/vim-plugins/overrides.nix
index 431c0f032c4b..79418c62aa8e 100644
--- a/pkgs/misc/vim-plugins/overrides.nix
+++ b/pkgs/misc/vim-plugins/overrides.nix
@@ -28,9 +28,6 @@
 
 # vCoolor dependency
 , gnome3
-
-# notational-fzf-vim dependencies
-, ripgrep
 }:
 
 self: super: {
@@ -252,17 +249,6 @@ self: super: {
   ncm2-ultisnips = super.ncm2-ultisnips.overrideAttrs(old: {
     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: {
     dependencies = [ self.fzfWrapper ];