vimPlugins.fzf-hoogle-vim: init at 2022-05-01 (#176722)

authored by Matthieu Coudron and committed by GitHub e1a1cfb5 7221cae5

+27
+12
pkgs/applications/editors/vim/plugins/generated.nix
··· 2674 meta.homepage = "https://github.com/stsewd/fzf-checkout.vim/"; 2675 }; 2676 2677 fzf-lsp-nvim = buildVimPluginFrom2Nix { 2678 pname = "fzf-lsp.nvim"; 2679 version = "2022-05-16";
··· 2674 meta.homepage = "https://github.com/stsewd/fzf-checkout.vim/"; 2675 }; 2676 2677 + fzf-hoogle-vim = buildVimPluginFrom2Nix { 2678 + pname = "fzf-hoogle.vim"; 2679 + version = "2022-05-01"; 2680 + src = fetchFromGitHub { 2681 + owner = "monkoose"; 2682 + repo = "fzf-hoogle.vim"; 2683 + rev = "16c08d1534aea2cd1cea1a1e20783bd22f634c77"; 2684 + sha256 = "0k7cdi00ixqdkqmyqnapn5aplyn0w78iwvm7ifyi9j3smz57hzhf"; 2685 + }; 2686 + meta.homepage = "https://github.com/monkoose/fzf-hoogle.vim/"; 2687 + }; 2688 + 2689 fzf-lsp-nvim = buildVimPluginFrom2Nix { 2690 pname = "fzf-lsp.nvim"; 2691 version = "2022-05-16";
+14
pkgs/applications/editors/vim/plugins/overrides.nix
··· 20 , dasht 21 , direnv 22 , fzf 23 , gnome 24 , himalaya 25 , khard 26 , languagetool 27 , llvmPackages ··· 298 prePatch = '' 299 rm Makefile 300 ''; 301 }); 302 303 fzf-lua = super.fzf-lua.overrideAttrs (old: {
··· 20 , dasht 21 , direnv 22 , fzf 23 + , gawk 24 , gnome 25 , himalaya 26 + , jq 27 , khard 28 , languagetool 29 , llvmPackages ··· 300 prePatch = '' 301 rm Makefile 302 ''; 303 + }); 304 + 305 + fzf-hoogle-vim = super.fzf-hoogle-vim.overrideAttrs (old: { 306 + 307 + # add this to your lua config to prevent the plugin from trying to write in the 308 + # nix store: 309 + # vim.g.hoogle_fzf_cache_file = vim.fn.stdpath('cache')..'/hoogle_cache.json' 310 + propagatedBuildInputs = [ 311 + jq 312 + gawk 313 + ]; 314 + dependencies = with self; [ fzf-vim ]; 315 }); 316 317 fzf-lua = super.fzf-lua.overrideAttrs (old: {
+1
pkgs/applications/editors/vim/plugins/vim-plugin-names
··· 223 https://github.com/BeneCollyridam/futhark-vim/,, 224 https://github.com/rktjmp/fwatch.nvim/,, 225 https://github.com/stsewd/fzf-checkout.vim/,, 226 https://github.com/gfanto/fzf-lsp.nvim/,, 227 https://github.com/ibhagwan/fzf-lua/,HEAD, 228 https://github.com/junegunn/fzf.vim/,,
··· 223 https://github.com/BeneCollyridam/futhark-vim/,, 224 https://github.com/rktjmp/fwatch.nvim/,, 225 https://github.com/stsewd/fzf-checkout.vim/,, 226 + https://github.com/monkoose/fzf-hoogle.vim/,HEAD, 227 https://github.com/gfanto/fzf-lsp.nvim/,, 228 https://github.com/ibhagwan/fzf-lua/,HEAD, 229 https://github.com/junegunn/fzf.vim/,,