2015-09-28 18:16:05 +02:00
|
|
|
{ stdenv, lib, fetchFromGitHub, autoconf, automake, libtool, pkgconfig
|
2015-06-21 09:56:48 +02:00
|
|
|
, ApplicationServices, CoreServices }:
|
2014-07-09 02:08:45 +02:00
|
|
|
|
2016-04-25 16:04:22 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2017-02-17 14:57:41 +01:00
|
|
|
version = "1.11.0";
|
2016-04-25 16:04:22 +02:00
|
|
|
name = "libuv-${version}";
|
2014-07-09 02:08:45 +02:00
|
|
|
|
2016-04-25 16:04:22 +02:00
|
|
|
src = fetchFromGitHub {
|
2015-01-08 05:56:06 +01:00
|
|
|
owner = "libuv";
|
2014-07-09 02:08:45 +02:00
|
|
|
repo = "libuv";
|
|
|
|
rev = "v${version}";
|
2017-02-17 14:57:41 +01:00
|
|
|
sha256 = "02sm7f3l0shpfz25b77q2jjvlypc1mmz4zpzfgfmiplhgxxaa6la";
|
2014-07-09 02:08:45 +02:00
|
|
|
};
|
|
|
|
|
2016-12-22 11:30:03 +01:00
|
|
|
postPatch = let
|
|
|
|
toDisable = [
|
|
|
|
"getnameinfo_basic" # probably network-dependent
|
|
|
|
"spawn_setuid_fails" "spawn_setgid_fails" "fs_chown" # user namespaces
|
2017-01-07 03:09:49 +01:00
|
|
|
"getaddrinfo_fail" "getaddrinfo_fail_sync"
|
2016-12-22 11:30:03 +01:00
|
|
|
];
|
|
|
|
tdRegexp = lib.concatStringsSep "\\|" toDisable;
|
|
|
|
in lib.optionalString doCheck ''
|
|
|
|
sed '/${tdRegexp}/d' -i test/test-list.h
|
|
|
|
'';
|
2016-11-29 18:40:30 +01:00
|
|
|
|
2017-02-17 14:57:41 +01:00
|
|
|
nativeBuildInputs = [ automake autoconf libtool pkgconfig ];
|
|
|
|
buildInputs = stdenv.lib.optionals stdenv.isDarwin [ ApplicationServices CoreServices ];
|
2014-07-09 02:08:45 +02:00
|
|
|
|
2016-04-25 16:04:22 +02:00
|
|
|
preConfigure = ''
|
|
|
|
LIBTOOLIZE=libtoolize ./autogen.sh
|
|
|
|
'';
|
2014-07-09 02:08:45 +02:00
|
|
|
|
2016-11-29 18:40:30 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
|
2016-04-25 16:04:22 +02: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 02:08:45 +02:00
|
|
|
};
|
|
|
|
|
2016-04-25 16:04:22 +02:00
|
|
|
}
|