summary refs log tree commit diff
path: root/pkgs/development/libraries/libuv
diff options
context:
space:
mode:
authorDan Peebles <pumpkin@me.com>2017-03-09 07:41:09 -0500
committerDan Peebles <pumpkin@me.com>2017-03-09 07:45:50 -0500
commit15a1743d87edf9f2c85ded977ced7dba52ad6beb (patch)
tree61fc2d80e535b6e42c11cccf290c06425832edbe /pkgs/development/libraries/libuv
parenta0f3590c5bf23bd8ac877ff6b88d06163e4b1757 (diff)
downloadnixpkgs-15a1743d87edf9f2c85ded977ced7dba52ad6beb.tar
nixpkgs-15a1743d87edf9f2c85ded977ced7dba52ad6beb.tar.gz
nixpkgs-15a1743d87edf9f2c85ded977ced7dba52ad6beb.tar.bz2
nixpkgs-15a1743d87edf9f2c85ded977ced7dba52ad6beb.tar.lz
nixpkgs-15a1743d87edf9f2c85ded977ced7dba52ad6beb.tar.xz
nixpkgs-15a1743d87edf9f2c85ded977ced7dba52ad6beb.tar.zst
nixpkgs-15a1743d87edf9f2c85ded977ced7dba52ad6beb.zip
libuv: disable tests (temporarily) on Darwin
They're flaky, break Hydra builds regularly, and lots of stuff depends
transitively on libuv.
Diffstat (limited to 'pkgs/development/libraries/libuv')
-rw-r--r--pkgs/development/libraries/libuv/default.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/pkgs/development/libraries/libuv/default.nix b/pkgs/development/libraries/libuv/default.nix
index 0b3b86e66a2..941ab6710c2 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";