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

This commit is contained in:
Matthieu Coudron 2022-06-13 14:12:14 +02:00 committed by GitHub
parent 7221cae5b9
commit e1a1cfb565
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 27 additions and 0 deletions

View file

@ -2674,6 +2674,18 @@ final: prev:
meta.homepage = "https://github.com/stsewd/fzf-checkout.vim/";
};
fzf-hoogle-vim = buildVimPluginFrom2Nix {
pname = "fzf-hoogle.vim";
version = "2022-05-01";
src = fetchFromGitHub {
owner = "monkoose";
repo = "fzf-hoogle.vim";
rev = "16c08d1534aea2cd1cea1a1e20783bd22f634c77";
sha256 = "0k7cdi00ixqdkqmyqnapn5aplyn0w78iwvm7ifyi9j3smz57hzhf";
};
meta.homepage = "https://github.com/monkoose/fzf-hoogle.vim/";
};
fzf-lsp-nvim = buildVimPluginFrom2Nix {
pname = "fzf-lsp.nvim";
version = "2022-05-16";

View file

@ -20,8 +20,10 @@
, dasht
, direnv
, fzf
, gawk
, gnome
, himalaya
, jq
, khard
, languagetool
, llvmPackages
@ -300,6 +302,18 @@ self: super: {
'';
});
fzf-hoogle-vim = super.fzf-hoogle-vim.overrideAttrs (old: {
# add this to your lua config to prevent the plugin from trying to write in the
# nix store:
# vim.g.hoogle_fzf_cache_file = vim.fn.stdpath('cache')..'/hoogle_cache.json'
propagatedBuildInputs = [
jq
gawk
];
dependencies = with self; [ fzf-vim ];
});
fzf-lua = super.fzf-lua.overrideAttrs (old: {
propagatedBuildInputs = [ fzf ];
});

View file

@ -223,6 +223,7 @@ https://github.com/shumphrey/fugitive-gitlab.vim/,,
https://github.com/BeneCollyridam/futhark-vim/,,
https://github.com/rktjmp/fwatch.nvim/,,
https://github.com/stsewd/fzf-checkout.vim/,,
https://github.com/monkoose/fzf-hoogle.vim/,HEAD,
https://github.com/gfanto/fzf-lsp.nvim/,,
https://github.com/ibhagwan/fzf-lua/,HEAD,
https://github.com/junegunn/fzf.vim/,,