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

33 lines
904 B
Nix
Raw Normal View History

2015-05-01 21:35:56 +00:00
{ stdenv, fetchurl, pkgconfig
# Optional Dependencies
, openssl ? null, libev ? null, zlib ? null
#, jansson ? null, boost ? null, libxml2 ? null, jemalloc ? null
2015-05-01 21:35:56 +00:00
}:
stdenv.mkDerivation rec {
name = "nghttp2-${version}";
version = "1.17.0";
2015-05-01 21:35:56 +00:00
# Don't use fetchFromGitHub since this needs a bootstrap curl
src = fetchurl {
2016-04-11 16:22:28 +00:00
url = "https://github.com/nghttp2/nghttp2/releases/download/v${version}/nghttp2-${version}.tar.bz2";
sha256 = "7685b6717d205d3a251b7dd5e73a7ca5e643bc5c01f928b82bfeed30c243f28a";
2015-05-01 21:35:56 +00:00
};
outputs = [ "out" "dev" "lib" ];
2015-05-01 21:35:56 +00:00
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ openssl libev zlib ];
2015-05-01 21:35:56 +00:00
enableParallelBuilding = true;
2015-05-01 21:35:56 +00:00
meta = with stdenv.lib; {
2015-05-01 21:35:56 +00:00
homepage = http://nghttp2.org/;
description = "A C implementation of HTTP/2";
2015-05-01 21:35:56 +00:00
license = licenses.mit;
platforms = platforms.all;
maintainers = with maintainers; [ wkennington ];
};
}