arrow-cpp: mark as unbroken on darwin (#216219)

Was fixed by 2f8e6f3d ('gtest: ensure C++17 support (#207338)')
This commit is contained in:
Dmitry Kalinkin 2023-02-13 19:52:29 -05:00 committed by GitHub
parent 5bfba94e28
commit 0a25e2c87e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -262,7 +262,7 @@ stdenv.mkDerivation rec {
description = "A cross-language development platform for in-memory data";
homepage = "https://arrow.apache.org/docs/cpp/";
license = licenses.asl20;
broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin; # waiting on gtest changes in staging
broken = stdenv.isLinux && stdenv.isAarch64; # waiting on gtest changes in staging
platforms = platforms.unix;
maintainers = with maintainers; [ tobim veprbl cpcloud ];
};