summary refs log tree commit diff
path: root/pkgs/development/libraries/nghttp2
diff options
context:
space:
mode:
authorRenaud <c0bw3b@users.noreply.github.com>2017-02-07 21:09:54 +0100
committerGitHub <noreply@github.com>2017-02-07 21:09:54 +0100
commitf586e4befe0a8780ed12778a31cb73bc0f0da3d4 (patch)
tree0c478ebc77e4dfd6277c2d1475e326053d4cf352 /pkgs/development/libraries/nghttp2
parent3a526deaeeb7a83dae6e4a3c2a4cddcb776b3985 (diff)
downloadnixpkgs-f586e4befe0a8780ed12778a31cb73bc0f0da3d4.tar
nixpkgs-f586e4befe0a8780ed12778a31cb73bc0f0da3d4.tar.gz
nixpkgs-f586e4befe0a8780ed12778a31cb73bc0f0da3d4.tar.bz2
nixpkgs-f586e4befe0a8780ed12778a31cb73bc0f0da3d4.tar.lz
nixpkgs-f586e4befe0a8780ed12778a31cb73bc0f0da3d4.tar.xz
nixpkgs-f586e4befe0a8780ed12778a31cb73bc0f0da3d4.tar.zst
nixpkgs-f586e4befe0a8780ed12778a31cb73bc0f0da3d4.zip
nghttp2: 1.17.0 -> 1.19.0
Package update.
New features as documented in changelogs : https://github.com/nghttp2/nghttp2/releases
Diffstat (limited to 'pkgs/development/libraries/nghttp2')
-rw-r--r--pkgs/development/libraries/nghttp2/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/libraries/nghttp2/default.nix b/pkgs/development/libraries/nghttp2/default.nix
index 0697b05c0a5..aee0b3d7116 100644
--- a/pkgs/development/libraries/nghttp2/default.nix
+++ b/pkgs/development/libraries/nghttp2/default.nix
@@ -1,7 +1,7 @@
 { stdenv, fetchurl, pkgconfig
 
 # Optional Dependencies
-, openssl ? null, libev ? null, zlib ? null
+, openssl ? null, libev ? null, zlib ? null, libcares ? null
 , enableHpack ? false, jansson ? null
 , enableAsioLib ? false, boost ? null
 , enableGetAssets ? false, libxml2 ? null
@@ -17,18 +17,18 @@ with { inherit (stdenv.lib) optional; };
 
 stdenv.mkDerivation rec {
   name = "nghttp2-${version}";
-  version = "1.17.0";
+  version = "1.19.0";
 
   # Don't use fetchFromGitHub since this needs a bootstrap curl
   src = fetchurl {
     url = "https://github.com/nghttp2/nghttp2/releases/download/v${version}/nghttp2-${version}.tar.bz2";
-    sha256 = "7685b6717d205d3a251b7dd5e73a7ca5e643bc5c01f928b82bfeed30c243f28a";
+    sha256 = "477466eee27158d37b4478d9335dd091497cae4d7f2375fc6657beab67db9e7a";
   };
 
   outputs = [ "out" "dev" "lib" ];
 
   nativeBuildInputs = [ pkgconfig ];
-  buildInputs = [ openssl libev zlib ]
+  buildInputs = [ openssl libev zlib libcares ]
     ++ optional enableHpack jansson
     ++ optional enableAsioLib boost
     ++ optional enableGetAssets libxml2