0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-13 21:50:33 +03:00

vimPlugins.lightline-bufferline: fix nativeCheckInputs

This commit is contained in:
Austin Horstman 2024-12-23 21:43:21 -06:00
parent e2db3df392
commit 014089e040
No known key found for this signature in database

View file

@ -1381,10 +1381,10 @@ in
dependencies = [ self.vim-floaterm ];
};
lightline-bufferline = super.lightline-bufferline.overrideAttrs {
lightline-bufferline = super.lightline-bufferline.overrideAttrs (oa: {
# Requires web-devicons but mini.icons can mock them up
nativeCheckInputs = [ self.nvim-web-devicons ];
};
nativeCheckInputs = oa.nativeCheckInputs ++ [ self.nvim-web-devicons ];
});
lir-nvim = super.lir-nvim.overrideAttrs {
dependencies = [ self.plenary-nvim ];