From 0aaf28fa51e7e3dcee3c5853047df36f100532c8 Mon Sep 17 00:00:00 2001 From: Sarah Clark Date: Tue, 23 Dec 2025 13:54:53 -0800 Subject: [PATCH] python3Packages.executorch: disable on Darwin --- pkgs/development/python-modules/executorch/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/python-modules/executorch/default.nix b/pkgs/development/python-modules/executorch/default.nix index f75dd5dae36d..9013410fb89d 100644 --- a/pkgs/development/python-modules/executorch/default.nix +++ b/pkgs/development/python-modules/executorch/default.nix @@ -200,6 +200,8 @@ buildPythonPackage rec { badPlatforms = [ # Many tests segfault. Supporting this platform will need additional work "aarch64-linux" + # Compilation errors on Darwin + lib.systems.inspect.patterns.isDarwin ]; }; }