nixpkgs/pkgs/development/libraries/nghttp2/default.nix

56 lines
1.6 KiB
Nix
Raw Normal View History

2015-05-01 23:35:56 +02:00
{ 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
, enableApp ? !stdenv.hostPlatform.isWindows
2015-05-01 23:35:56 +02: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 23:35:56 +02:00
stdenv.mkDerivation rec {
name = "nghttp2-${version}";
version = "1.35.0";
2015-05-01 23:35:56 +02:00
src = fetchurl {
2016-04-11 18:22:28 +02:00
url = "https://github.com/nghttp2/nghttp2/releases/download/v${version}/nghttp2-${version}.tar.bz2";
sha256 = "0nfdagjb0apgvms28kr9m8k93di5fv6ww9i1jwpd83y0p4vf5zvh";
2015-05-01 23:35:56 +02:00
};
outputs = [ "bin" "out" "dev" "lib" ];
2015-05-01 23:35:56 +02:00
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ openssl libev zlib c-ares ]
++ optional enableHpack jansson
++ optional enableAsioLib boost
++ optional enableGetAssets libxml2
++ optional enableJemalloc jemalloc;
2015-05-01 23:35:56 +02:00
enableParallelBuilding = true;
2015-05-01 23:35:56 +02: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 23:35:56 +02:00
license = licenses.mit;
platforms = platforms.all;
maintainers = with maintainers; [ wkennington ];
};
}