Commit d2a359ca authored by Gaetan Lepage's avatar Gaetan Lepage
Browse files

python312Packages.pyopencl: mark as broken on x86_64-darwin too

parent fa7b1fcc
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -91,7 +91,10 @@ buildPythonPackage rec {
    changelog = "https://github.com/inducer/pyopencl/releases/tag/v${version}";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ GaetanLepage ];
    # ld: symbol(s) not found for architecture arm64
    broken = stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isAarch64;
    badPlatforms = [
      # ld: symbol(s) not found for architecture arm64/x86_64
      lib.systems.inspect.patterns.isDarwin
    ];
  };
}