diff options
| author | Travis A. Everett <travis.a.everett@gmail.com> | 2024-01-15 21:28:05 -0600 |
|---|---|---|
| committer | Vladimír Čunát <v@cunat.cz> | 2024-02-09 09:15:31 +0100 |
| commit | 6e157c171543b5f872d5fd6ff1eb344a573eff07 (patch) | |
| tree | 97d7f5f17c0792e6b5cf991b1817011ff89edd2e | |
| parent | libuv: 1.46.0 -> 1.47.0 (diff) | |
| download | nixpkgs-6e157c171543b5f872d5fd6ff1eb344a573eff07.tar.gz | |
libuv: work around test breaks on macOS < 10.15
(cherry picked from commit a1438ae600fbc8befcd590072c0f90e6a1b6771f)
| -rw-r--r-- | pkgs/development/libraries/libuv/default.nix | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/development/libraries/libuv/default.nix b/pkgs/development/libraries/libuv/default.nix index 97f3b76ee3ca..06bb63508db4 100644 --- a/pkgs/development/libraries/libuv/default.nix +++ b/pkgs/development/libraries/libuv/default.nix @@ -70,6 +70,9 @@ stdenv.mkDerivation (finalAttrs: { "fs_event_watch_dir_recursive" "fs_event_watch_file" "fs_event_watch_file_current_dir" "fs_event_watch_file_exact_path" "process_priority" "udp_create_early_bad_bind" + ] ++ lib.optionals (stdenv.isDarwin && stdenv.isx86_64) [ + # fail on macos < 10.15 (starting in libuv 1.47.0) + "fs_write_alotof_bufs_with_offset" "fs_write_multiple_bufs" "fs_read_bufs" ] ++ lib.optionals stdenv.isAarch32 [ # I observe this test failing with some regularity on ARMv7: # https://github.com/libuv/libuv/issues/1871 |
