2015-05-01 22:35:56 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig
|
|
|
|
|
2016-04-18 19:42:50 +01:00
|
|
|
# Optional Dependencies
|
2016-12-11 16:50:28 +00:00
|
|
|
, openssl ? null, libev ? null, zlib ? null
|
|
|
|
#, jansson ? null, boost ? null, libxml2 ? null, jemalloc ? null
|
2015-05-01 22:35:56 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2016-04-18 19:42:50 +01:00
|
|
|
name = "nghttp2-${version}";
|
2016-12-09 23:36:28 +00:00
|
|
|
version = "1.17.0";
|
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-12-09 23:36:28 +00:00
|
|
|
sha256 = "7685b6717d205d3a251b7dd5e73a7ca5e643bc5c01f928b82bfeed30c243f28a";
|
2015-05-01 22:35:56 +01:00
|
|
|
};
|
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|