Skip to content

Commit

Permalink
Merge pull request NixOS#72925 from davidak/nlohmann_json_disable_tests
Browse files Browse the repository at this point in the history
nlohmann_json: disable tests for now since they timeout
  • Loading branch information
grahamc committed Nov 6, 2019
2 parents b8a18cf + 7456f19 commit 4835c83
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pkgs/development/libraries/nlohmann_json/default.nix
Expand Up @@ -21,7 +21,9 @@ stdenv.mkDerivation rec {
"-DJSON_MultipleHeaders=ON"
];

doCheck = stdenv.hostPlatform == stdenv.buildPlatform;
# A test cause the build to timeout https://github.com/nlohmann/json/issues/1816
#doCheck = stdenv.hostPlatform == stdenv.buildPlatform;
doCheck = false;

postInstall = "rm -rf $out/lib64";

Expand Down

0 comments on commit 4835c83

Please sign in to comment.