From fa48427b834d8a3f99abe2a937a5c3b0da25fc28 Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Sat, 11 Jan 2025 22:47:51 +0100 Subject: [PATCH] onnxruntime: mark as broken on darwin --- pkgs/development/libraries/onnxruntime/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/development/libraries/onnxruntime/default.nix b/pkgs/development/libraries/onnxruntime/default.nix index 66d1dd309a68..ced9ce9945fd 100644 --- a/pkgs/development/libraries/onnxruntime/default.nix +++ b/pkgs/development/libraries/onnxruntime/default.nix @@ -275,5 +275,9 @@ effectiveStdenv.mkDerivation rec { platforms = platforms.unix; license = licenses.mit; maintainers = with maintainers; [ puffnfresh ck3d cbourjau ]; + badPlatforms = [ + # error: implicit capture of 'this' with a capture default of '=' is deprecated [-Werror,-Wdeprecated-this-capture] + lib.systems.inspect.patterns.isDarwin + ]; }; }