vimPlugins.nvim-notify: skip fzf check on darwin
Have a fzf-lua issue that can affect darwin, we skip the test in luaPackages and the fzf integration can trigger it in this plugin when requiring fzf. Signed-off-by: Austin Horstman <khaneliman12@gmail.com>
This commit is contained in:
@@ -2601,6 +2601,12 @@ in
|
||||
checkInputs = [
|
||||
self.fzf-lua
|
||||
];
|
||||
|
||||
nvimSkipModules = lib.optionals stdenv.hostPlatform.isDarwin [
|
||||
#FIXME: https://github.com/NixOS/nixpkgs/issues/431458
|
||||
# fzf-lua throws `address already in use` on darwin
|
||||
"notify.integrations.fzf"
|
||||
];
|
||||
};
|
||||
|
||||
nvim-nu = super.nvim-nu.overrideAttrs {
|
||||
|
||||
Reference in New Issue
Block a user