about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorWeijia Wang <9713184+wegank@users.noreply.github.com>2023-01-29 08:59:50 +0100
committerGitHub <noreply@github.com>2023-01-29 08:59:50 +0100
commit9d9e27f2fe7717fde4104c8310627617b042de5d (patch)
tree074df84804258de396e471ed9411836d3ab07507 /pkgs
parentaba2aded0e9bd399da538b493bec8c05d91540fd (diff)
parenta6fb5666b315667c5b978ba2504bccbebe180fe1 (diff)
Merge pull request #213322 from wegank/rapidjson-valgrind
rapidjson: disable tests on darwin
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/libraries/rapidjson/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/libraries/rapidjson/default.nix b/pkgs/development/libraries/rapidjson/default.nix
index 9d8db78e02159..b67824b5cc55b 100644
--- a/pkgs/development/libraries/rapidjson/default.nix
+++ b/pkgs/development/libraries/rapidjson/default.nix
@@ -43,7 +43,7 @@ stdenv.mkDerivation rec {
   cmakeFlags = [ "-DGTEST_SOURCE_DIR=${gtest.dev}/include" ];
 
   nativeCheckInputs = [ valgrind ];
-  doCheck = !stdenv.hostPlatform.isStatic;
+  doCheck = !stdenv.hostPlatform.isStatic && !stdenv.isDarwin;
 
   meta = with lib; {
     description = "Fast JSON parser/generator for C++ with both SAX/DOM style API";