2015-05-01 22:35:56 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig
|
|
|
|
|
2016-04-18 19:42:50 +01:00
|
|
|
# Optional Dependencies
|
2015-05-01 22:35:56 +01:00
|
|
|
, openssl ? null, libev ? null, zlib ? null, jansson ? null, boost ? null
|
|
|
|
, libxml2 ? null, jemalloc ? null
|
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2016-04-18 19:42:50 +01:00
|
|
|
name = "nghttp2-${version}";
|
2016-11-23 00:18:27 +00:00
|
|
|
version = "1.16.1";
|
2015-05-01 22:35:56 +01:00
|
|
|
|
|
|
|
# Don't use fetchFromGitHub since this needs a bootstrap curl
|
|
|
|
src = fetchurl {
|
2016-04-11 17:22:28 +01:00
|
|
|
url = "https://github.com/nghttp2/nghttp2/releases/download/v${version}/nghttp2-${version}.tar.bz2";
|
2016-11-23 00:18:27 +00:00
|
|
|
sha256 = "069pw84f8gg21npapn7y1sizwn6w35692zaq5g45gy8hdbmcl8yc";
|
2015-05-01 22:35:56 +01:00
|
|
|
};
|
|
|
|
|
2015-05-14 21:35:35 +01:00
|
|
|
# Configure script searches for a symbol which does not exist in jemalloc on Darwin
|
|
|
|
# Reported upstream in https://github.com/tatsuhiro-t/nghttp2/issues/233
|
2016-04-18 19:42:50 +01:00
|
|
|
postPatch = if stdenv.isDarwin && jemalloc != null then ''
|
2015-05-14 21:35:35 +01:00
|
|
|
substituteInPlace configure --replace "malloc_stats_print" "je_malloc_stats_print"
|
|
|
|
'' else null;
|
|
|
|
|
2016-08-29 01:30:01 +01:00
|
|
|
outputs = [ "out" "dev" "lib" ];
|
2016-04-18 19:42:50 +01:00
|
|
|
|
2015-05-01 22:35:56 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2016-04-18 19:42:50 +01:00
|
|
|
buildInputs = [ openssl libev zlib ];
|
2015-05-01 22:35:56 +01:00
|
|
|
|
2016-04-18 19:42:50 +01:00
|
|
|
enableParallelBuilding = true;
|
2015-05-01 22:35:56 +01:00
|
|
|
|
2015-06-01 19:52:03 +01:00
|
|
|
meta = with stdenv.lib; {
|
2015-05-01 22:35:56 +01:00
|
|
|
homepage = http://nghttp2.org/;
|
2016-04-18 19:42:50 +01:00
|
|
|
description = "A C implementation of HTTP/2";
|
2015-05-01 22:35:56 +01:00
|
|
|
license = licenses.mit;
|
|
|
|
platforms = platforms.all;
|
|
|
|
maintainers = with maintainers; [ wkennington ];
|
|
|
|
};
|
|
|
|
}
|