vimPlugins.blink-pairs: fix darwin build

Signed-off-by: Austin Horstman <khaneliman12@gmail.com>
This commit is contained in:
Austin Horstman
2025-11-23 12:51:02 -06:00
parent 6b853a18f9
commit 9751f38f82
@@ -23,7 +23,12 @@ let
cargoHash = "sha256-Cn9zRsQkBwaKbBD/JEpFMBOF6CBZTDx7fQa6Aoic4YU=";
env.RUSTC_BOOTSTRAP = 1;
env = {
RUSTC_BOOTSTRAP = 1;
# Allow undefined symbols on Darwin - they will be provided by Neovim's LuaJIT runtime
RUSTFLAGS = lib.optionalString stdenv.hostPlatform.isDarwin "-C link-arg=-undefined -C link-arg=dynamic_lookup";
};
# NOTE: Disabled upstream too
doCheck = false;