summary refs log tree commit diff
path: root/pkgs/misc/vim-plugins/overrides.nix
diff options
context:
space:
mode:
authorAndrey Kuznetsov <fear@loathing.in>2021-07-17 20:07:29 +0000
committerAndrey Kuznetsov <fear@loathing.in>2021-07-17 20:20:48 +0000
commit64b38a5feb9b39ef55cf6a59181bfc3674b5c7be (patch)
treeeb74f41fcf73c2158aa710ff726e3b5472180cd3 /pkgs/misc/vim-plugins/overrides.nix
parent2c8298b5d92230be8949fc6407ac41b8fff02845 (diff)
downloadnixpkgs-64b38a5feb9b39ef55cf6a59181bfc3674b5c7be.tar
nixpkgs-64b38a5feb9b39ef55cf6a59181bfc3674b5c7be.tar.gz
nixpkgs-64b38a5feb9b39ef55cf6a59181bfc3674b5c7be.tar.bz2
nixpkgs-64b38a5feb9b39ef55cf6a59181bfc3674b5c7be.tar.lz
nixpkgs-64b38a5feb9b39ef55cf6a59181bfc3674b5c7be.tar.xz
nixpkgs-64b38a5feb9b39ef55cf6a59181bfc3674b5c7be.tar.zst
nixpkgs-64b38a5feb9b39ef55cf6a59181bfc3674b5c7be.zip
vimPlugins.telescope-fzf-native-nvim: build binaries
Diffstat (limited to 'pkgs/misc/vim-plugins/overrides.nix')
-rw-r--r--pkgs/misc/vim-plugins/overrides.nix6
1 files changed, 6 insertions, 0 deletions
diff --git a/pkgs/misc/vim-plugins/overrides.nix b/pkgs/misc/vim-plugins/overrides.nix
index 8a4b3a1dbe6..0cf3222c9f3 100644
--- a/pkgs/misc/vim-plugins/overrides.nix
+++ b/pkgs/misc/vim-plugins/overrides.nix
@@ -479,6 +479,12 @@ self: super: {
     dependencies = with self; [ telescope-nvim ];
   });
 
+  telescope-fzf-native-nvim = super.telescope-fzf-native-nvim.overrideAttrs (old: {
+    dependencies = with self; [ telescope-nvim ];
+    buildPhase = "make";
+    meta.platforms = lib.platforms.all;
+  });
+
   telescope-fzy-native-nvim = super.telescope-fzy-native-nvim.overrideAttrs (old: {
     dependencies = with self; [ telescope-nvim ];
     preFixup =