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

47 lines
1.3 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
, enableHpack ? false, jansson ? null
, enableAsioLib ? false, boost ? null
, enableGetAssets ? false, libxml2 ? null
, enableJemalloc ? false, jemalloc ? null
2015-05-01 23:35:56 +02:00
}:
assert enableHpack -> jansson != null;
assert enableAsioLib -> boost != null;
assert enableGetAssets -> libxml2 != null;
assert enableJemalloc -> jemalloc != null;
with { inherit (stdenv.lib) optional; };
2015-05-01 23:35:56 +02:00
stdenv.mkDerivation rec {
name = "nghttp2-${version}";
version = "1.17.0";
2015-05-01 23:35:56 +02:00
# Don't use fetchFromGitHub since this needs a bootstrap curl
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 = "7685b6717d205d3a251b7dd5e73a7ca5e643bc5c01f928b82bfeed30c243f28a";
2015-05-01 23:35:56 +02:00
};
outputs = [ "out" "dev" "lib" ];
2015-05-01 23:35:56 +02:00
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ openssl libev zlib ]
++ 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
meta = with stdenv.lib; {
2015-05-01 23:35:56 +02:00
homepage = http://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 ];
};
}