mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-19 02:44:17 +03:00
5f89c9e92d
Corrected c-ares attribute name Full changelog : https://nghttp2.org/blog/2017/02/26/nghttp2-v1-20-0/
53 lines
1.6 KiB
Nix
53 lines
1.6 KiB
Nix
{ stdenv, fetchurl, pkgconfig
|
|
|
|
# Optional Dependencies
|
|
, openssl ? null, libev ? null, zlib ? null, c-ares ? null
|
|
, enableHpack ? false, jansson ? null
|
|
, enableAsioLib ? false, boost ? null
|
|
, enableGetAssets ? false, libxml2 ? null
|
|
, enableJemalloc ? false, jemalloc ? null
|
|
}:
|
|
|
|
assert enableHpack -> jansson != null;
|
|
assert enableAsioLib -> boost != null;
|
|
assert enableGetAssets -> libxml2 != null;
|
|
assert enableJemalloc -> jemalloc != null;
|
|
|
|
with { inherit (stdenv.lib) optional; };
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "nghttp2-${version}";
|
|
version = "1.20.0";
|
|
|
|
# Don't use fetchFromGitHub since this needs a bootstrap curl
|
|
src = fetchurl {
|
|
url = "https://github.com/nghttp2/nghttp2/releases/download/v${version}/nghttp2-${version}.tar.bz2";
|
|
sha256 = "fb29d0500b194f11680203aed21aafab241063ec1397cc51ab5cc0957341141b";
|
|
};
|
|
|
|
outputs = [ "out" "dev" "lib" ];
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ openssl libev zlib c-ares ]
|
|
++ optional enableHpack jansson
|
|
++ optional enableAsioLib boost
|
|
++ optional enableGetAssets libxml2
|
|
++ optional enableJemalloc jemalloc;
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
configureFlags = [ "--with-spdylay=no" "--disable-examples" "--disable-python-bindings" ]
|
|
++ optional enableAsioLib "--enable-asio-lib --with-boost-libdir=${boost}/lib";
|
|
|
|
#doCheck = true; # requires CUnit ; currently failing at test_util_localtime_date in util_test.cc
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://nghttp2.org/;
|
|
description = "A C implementation of HTTP/2";
|
|
license = licenses.mit;
|
|
platforms = platforms.all;
|
|
maintainers = with maintainers; [ wkennington ];
|
|
};
|
|
}
|