summary refs log tree commit diff
path: root/pkgs/development/libraries/arrow-cpp/default.nix
diff options
context:
space:
mode:
authorDmitry Kalinkin <dmitry.kalinkin@gmail.com>2023-02-12 16:11:42 -0500
committerGitHub <noreply@github.com>2023-02-12 16:11:42 -0500
commit91bf862e3c5c67b69797e9740a41e611f674a5a5 (patch)
tree99e2bb9b1067d3e856bebc8d997b25d394527d49 /pkgs/development/libraries/arrow-cpp/default.nix
parent44a356964688d7a1d6dc322e047eaa6d547081a8 (diff)
downloadnixpkgs-91bf862e3c5c67b69797e9740a41e611f674a5a5.tar
nixpkgs-91bf862e3c5c67b69797e9740a41e611f674a5a5.tar.gz
nixpkgs-91bf862e3c5c67b69797e9740a41e611f674a5a5.tar.bz2
nixpkgs-91bf862e3c5c67b69797e9740a41e611f674a5a5.tar.lz
nixpkgs-91bf862e3c5c67b69797e9740a41e611f674a5a5.tar.xz
nixpkgs-91bf862e3c5c67b69797e9740a41e611f674a5a5.tar.zst
nixpkgs-91bf862e3c5c67b69797e9740a41e611f674a5a5.zip
arrow-cpp: fix meta.broken
Diffstat (limited to 'pkgs/development/libraries/arrow-cpp/default.nix')
-rw-r--r--pkgs/development/libraries/arrow-cpp/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/libraries/arrow-cpp/default.nix b/pkgs/development/libraries/arrow-cpp/default.nix
index 900d40cfb8a..76e117e57ce 100644
--- a/pkgs/development/libraries/arrow-cpp/default.nix
+++ b/pkgs/development/libraries/arrow-cpp/default.nix
@@ -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) || stdenv.isDarwin; # waiting on gtest changes in staging
     platforms = platforms.unix;
     maintainers = with maintainers; [ tobim veprbl cpcloud ];
   };