ngtcp2: enable darwin build

This commit is contained in:
midchildan 2022-02-04 01:34:47 +09:00
parent ed069b92f3
commit 0f3cd7f888
No known key found for this signature in database
GPG key ID: A64DE57FA5963935

View file

@ -1,6 +1,6 @@
{ lib, stdenv, fetchFromGitHub
, autoreconfHook, pkg-config
, cunit, file
, cunit, file, ncurses
, jemalloc, libev, nghttp3, quictls
}:
@ -15,8 +15,9 @@ stdenv.mkDerivation rec {
sha256 = "sha256-uBmD26EYT8zxmHD5FuHCbEuTdWxer/3uhRp8PhUT87M=";
};
nativeBuildInputs = [ autoreconfHook pkg-config cunit file ];
nativeBuildInputs = [ autoreconfHook pkg-config file ];
buildInputs = [ jemalloc libev nghttp3 quictls ];
checkInputs = [ cunit ncurses ];
preConfigure = ''
substituteInPlace ./configure --replace /usr/bin/file ${file}/bin/file
@ -25,12 +26,13 @@ stdenv.mkDerivation rec {
outputs = [ "out" "dev" ];
doCheck = true;
enableParallelBuilding = true;
meta = with lib; {
homepage = "https://github.com/ngtcp2/ngtcp2";
description = "ngtcp2 project is an effort to implement QUIC protocol which is now being discussed in IETF QUICWG for its standardization.";
license = licenses.mit;
platforms = platforms.linux;
platforms = platforms.unix;
maintainers = with maintainers; [ izorkin ];
};
}