2015-05-01 21:35:56 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig
|
|
|
|
|
2016-04-18 18:42:50 +00:00
|
|
|
# Optional Dependencies
|
2017-03-15 23:55:13 +00:00
|
|
|
, openssl ? null, libev ? null, zlib ? null, c-ares ? null
|
2016-12-12 23:45:05 +00:00
|
|
|
, enableHpack ? false, jansson ? null
|
|
|
|
, enableAsioLib ? false, boost ? null
|
|
|
|
, enableGetAssets ? false, libxml2 ? null
|
|
|
|
, enableJemalloc ? false, jemalloc ? null
|
2015-05-01 21:35:56 +00:00
|
|
|
}:
|
|
|
|
|
2016-12-12 23:45:05 +00:00
|
|
|
assert enableHpack -> jansson != null;
|
|
|
|
assert enableAsioLib -> boost != null;
|
|
|
|
assert enableGetAssets -> libxml2 != null;
|
|
|
|
assert enableJemalloc -> jemalloc != null;
|
|
|
|
|
2017-02-09 01:52:13 +00:00
|
|
|
let inherit (stdenv.lib) optional; in
|
2016-12-12 23:45:05 +00:00
|
|
|
|
2015-05-01 21:35:56 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2016-04-18 18:42:50 +00:00
|
|
|
name = "nghttp2-${version}";
|
2018-05-22 22:25:17 +00:00
|
|
|
version = "1.32.0";
|
2015-05-01 21:35:56 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2016-04-11 16:22:28 +00:00
|
|
|
url = "https://github.com/nghttp2/nghttp2/releases/download/v${version}/nghttp2-${version}.tar.bz2";
|
2018-05-22 22:25:17 +00:00
|
|
|
sha256 = "0jlndbp4bnyvdg8b59pznrzz0bvwb9nmag7zgcflg51lm1pq2q06";
|
2015-05-01 21:35:56 +00:00
|
|
|
};
|
|
|
|
|
2017-08-18 19:18:22 +00:00
|
|
|
outputs = [ "bin" "out" "dev" "lib" ];
|
2016-04-18 18:42:50 +00:00
|
|
|
|
2015-05-01 21:35:56 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2017-03-15 23:55:13 +00:00
|
|
|
buildInputs = [ openssl libev zlib c-ares ]
|
2016-12-12 23:45:05 +00:00
|
|
|
++ optional enableHpack jansson
|
|
|
|
++ optional enableAsioLib boost
|
|
|
|
++ optional enableGetAssets libxml2
|
|
|
|
++ optional enableJemalloc jemalloc;
|
2015-05-01 21:35:56 +00:00
|
|
|
|
2016-04-18 18:42:50 +00:00
|
|
|
enableParallelBuilding = true;
|
2015-05-01 21:35:56 +00:00
|
|
|
|
2017-08-18 19:18:22 +00:00
|
|
|
configureFlags = [ "--with-spdylay=no" "--disable-examples" "--disable-python-bindings" "--enable-app" ]
|
2017-03-15 23:55:13 +00:00
|
|
|
++ 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
|
|
|
|
|
2015-06-01 18:52:03 +00:00
|
|
|
meta = with stdenv.lib; {
|
2017-03-15 23:55:13 +00:00
|
|
|
homepage = https://nghttp2.org/;
|
2016-04-18 18:42:50 +00:00
|
|
|
description = "A C implementation of HTTP/2";
|
2015-05-01 21:35:56 +00:00
|
|
|
license = licenses.mit;
|
|
|
|
platforms = platforms.all;
|
|
|
|
maintainers = with maintainers; [ wkennington ];
|
|
|
|
};
|
|
|
|
}
|