vimPlugins.lens-vim: init at 2020-04-24

This commit is contained in:
Ivan Kovnatsky
2020-12-08 09:55:45 -08:00
committed by Jonathan Ringer
parent 12beaac933
commit 5e66517178
4 changed files with 37 additions and 0 deletions
+12
View File
@@ -461,6 +461,18 @@ self: super: {
];
});
lens-vim = super.lens-vim.overrideAttrs(old: {
# remove duplicate g:lens#animate in doc/lens.txt
# https://github.com/NixOS/nixpkgs/pull/105810#issuecomment-740007985
# https://github.com/camspiers/lens.vim/pull/40/files
patches = [
(substituteAll {
src = ./patches/lens-vim/remove_duplicate_g_lens_animate.patch;
inherit languagetool;
})
];
});
vim-hier = super.vim-hier.overrideAttrs(old: {
buildInputs = [ vim ];
});