From 15a1743d87edf9f2c85ded977ced7dba52ad6beb Mon Sep 17 00:00:00 2001 From: Dan Peebles Date: Thu, 9 Mar 2017 07:41:09 -0500 Subject: [PATCH] libuv: disable tests (temporarily) on Darwin They're flaky, break Hydra builds regularly, and lots of stuff depends transitively on libuv. --- pkgs/development/libraries/libuv/default.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pkgs/development/libraries/libuv/default.nix b/pkgs/development/libraries/libuv/default.nix index 0b3b86e66a24..941ab6710c2e 100644 --- a/pkgs/development/libraries/libuv/default.nix +++ b/pkgs/development/libraries/libuv/default.nix @@ -34,7 +34,10 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - doCheck = true; + # These should be turned back on, but see https://github.com/NixOS/nixpkgs/issues/23651 + # For now the tests are just breaking large swaths of the nixpkgs binary cache for Darwin, + # and I'd rather have everything else work at all than have stronger assurance here. + doCheck = !stdenv.isDarwin; meta = with lib; { description = "A multi-platform support library with a focus on asynchronous I/O";