3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/libraries/nghttp2/default.nix

60 lines
1.7 KiB
Nix
Raw Normal View History

2015-05-01 22:35:56 +01:00
{ stdenv, fetchurl, pkgconfig
# Optional Dependencies
, openssl ? null, zlib ? null
, enableLibEv ? !stdenv.hostPlatform.isWindows, libev ? null
, enableCAres ? !stdenv.hostPlatform.isWindows, c-ares ? null
, enableHpack ? false, jansson ? null
, enableAsioLib ? false, boost ? null
, enableGetAssets ? false, libxml2 ? null
, enableJemalloc ? false, jemalloc ? null
, enableApp ? !stdenv.hostPlatform.isWindows
2015-05-01 22:35:56 +01:00
}:
assert enableHpack -> jansson != null;
assert enableAsioLib -> boost != null;
assert enableGetAssets -> libxml2 != null;
assert enableJemalloc -> jemalloc != null;
let inherit (stdenv.lib) optional; in
2015-05-01 22:35:56 +01:00
stdenv.mkDerivation rec {
pname = "nghttp2";
2019-12-03 14:41:30 +00:00
version = "1.40.0";
2015-05-01 22:35:56 +01:00
src = fetchurl {
url = "https://github.com/${pname}/${pname}/releases/download/v${version}/${pname}-${version}.tar.bz2";
2019-12-03 14:41:30 +00:00
sha256 = "0kyrgd4s2pq51ps5z385kw1hn62m8qp7c4h6im0g4ibrf89qwxc2";
2015-05-01 22:35:56 +01:00
};
outputs = [ "bin" "out" "dev" "lib" ];
2015-05-01 22:35:56 +01:00
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ openssl ]
++ optional enableLibEv libev
++ [ zlib ]
++ optional enableCAres c-ares
++ optional enableHpack jansson
++ optional enableAsioLib boost
++ optional enableGetAssets libxml2
++ optional enableJemalloc jemalloc;
2015-05-01 22:35:56 +01:00
enableParallelBuilding = true;
2015-05-01 22:35:56 +01:00
configureFlags = [
"--with-spdylay=no"
"--disable-examples"
"--disable-python-bindings"
(stdenv.lib.enableFeature enableApp "app")
] ++ 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";
2015-05-01 22:35:56 +01:00
license = licenses.mit;
platforms = platforms.all;
};
}