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:
parent
e2db3df392
commit
014089e040
1 changed files with 3 additions and 3 deletions
|
@ -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 ];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue