2015-09-28 16:16:05 +00:00
|
|
|
{ stdenv, lib, fetchFromGitHub, autoconf, automake, libtool, pkgconfig
|
2015-06-21 07:56:48 +00:00
|
|
|
, ApplicationServices, CoreServices }:
|
2014-07-09 00:08:45 +00:00
|
|
|
|
2016-04-25 14:04:22 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2018-02-27 05:15:04 +00:00
|
|
|
version = "1.19.2";
|
2016-04-25 14:04:22 +00:00
|
|
|
name = "libuv-${version}";
|
2014-07-09 00:08:45 +00:00
|
|
|
|
2016-04-25 14:04:22 +00:00
|
|
|
src = fetchFromGitHub {
|
2015-01-08 04:56:06 +00:00
|
|
|
owner = "libuv";
|
2014-07-09 00:08:45 +00:00
|
|
|
repo = "libuv";
|
|
|
|
rev = "v${version}";
|
2018-02-27 05:15:04 +00:00
|
|
|
sha256 = "118r8wigm65107fm7kzfz7gc4awy8xxg0knvwnshx1j40ks08x9z";
|
2014-07-09 00:08:45 +00:00
|
|
|
};
|
|
|
|
|
2016-12-22 10:30:03 +00:00
|
|
|
postPatch = let
|
|
|
|
toDisable = [
|
2017-05-30 17:24:32 +00:00
|
|
|
"getnameinfo_basic" "udp_send_hang_loop" # probably network-dependent
|
2016-12-22 10:30:03 +00:00
|
|
|
"spawn_setuid_fails" "spawn_setgid_fails" "fs_chown" # user namespaces
|
2017-01-07 02:09:49 +00:00
|
|
|
"getaddrinfo_fail" "getaddrinfo_fail_sync"
|
2017-07-14 19:52:36 +00:00
|
|
|
"threadpool_multiple_event_loops" # times out on slow machines
|
2017-02-28 08:14:38 +00:00
|
|
|
]
|
2017-03-05 11:38:20 +00:00
|
|
|
# sometimes: timeout (no output), failed uv_listen
|
|
|
|
++ stdenv.lib.optionals stdenv.isDarwin [ "process_title" "emfile" ];
|
2016-12-22 10:30:03 +00:00
|
|
|
tdRegexp = lib.concatStringsSep "\\|" toDisable;
|
|
|
|
in lib.optionalString doCheck ''
|
|
|
|
sed '/${tdRegexp}/d' -i test/test-list.h
|
|
|
|
'';
|
2016-11-29 17:40:30 +00:00
|
|
|
|
2017-02-17 13:57:41 +00:00
|
|
|
nativeBuildInputs = [ automake autoconf libtool pkgconfig ];
|
|
|
|
buildInputs = stdenv.lib.optionals stdenv.isDarwin [ ApplicationServices CoreServices ];
|
2014-07-09 00:08:45 +00:00
|
|
|
|
2016-04-25 14:04:22 +00:00
|
|
|
preConfigure = ''
|
|
|
|
LIBTOOLIZE=libtoolize ./autogen.sh
|
|
|
|
'';
|
2014-07-09 00:08:45 +00:00
|
|
|
|
2016-11-29 17:40:30 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2017-03-09 12:41:09 +00:00
|
|
|
# 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;
|
2016-11-29 17:40:30 +00:00
|
|
|
|
2016-04-25 14:04:22 +00:00
|
|
|
meta = with lib; {
|
|
|
|
description = "A multi-platform support library with a focus on asynchronous I/O";
|
|
|
|
homepage = https://github.com/libuv/libuv;
|
|
|
|
maintainers = with maintainers; [ cstrahan ];
|
|
|
|
platforms = with platforms; linux ++ darwin;
|
2014-07-09 00:08:45 +00:00
|
|
|
};
|
|
|
|
|
2016-04-25 14:04:22 +00:00
|
|
|
}
|