summary refs log tree commit diff
path: root/pkgs/development/libraries/nghttp2
diff options
context:
space:
mode:
authorWilliam A. Kennington III <william@wkennington.com>2015-10-17 11:54:03 -0700
committerWilliam A. Kennington III <william@wkennington.com>2015-10-17 11:54:03 -0700
commit4318aede92abdf041418753cdbbcfc178da88b86 (patch)
treeeef212ef6a87949514b2db6f5fa50376059ee69b /pkgs/development/libraries/nghttp2
parent9b9d790c6cecb48228fa8321ee85156904ddb914 (diff)
downloadnixpkgs-4318aede92abdf041418753cdbbcfc178da88b86.tar
nixpkgs-4318aede92abdf041418753cdbbcfc178da88b86.tar.gz
nixpkgs-4318aede92abdf041418753cdbbcfc178da88b86.tar.bz2
nixpkgs-4318aede92abdf041418753cdbbcfc178da88b86.tar.lz
nixpkgs-4318aede92abdf041418753cdbbcfc178da88b86.tar.xz
nixpkgs-4318aede92abdf041418753cdbbcfc178da88b86.tar.zst
nixpkgs-4318aede92abdf041418753cdbbcfc178da88b86.zip
nghttp2: 1.2.1 -> 1.3.4
Diffstat (limited to 'pkgs/development/libraries/nghttp2')
-rw-r--r--pkgs/development/libraries/nghttp2/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/development/libraries/nghttp2/default.nix b/pkgs/development/libraries/nghttp2/default.nix
index c4257fe97d2..5cd5f0cb629 100644
--- a/pkgs/development/libraries/nghttp2/default.nix
+++ b/pkgs/development/libraries/nghttp2/default.nix
@@ -34,12 +34,12 @@ let
 in
 stdenv.mkDerivation rec {
   name = "${prefix}nghttp2-${version}";
-  version = "1.2.1";
+  version = "1.3.4";
 
   # Don't use fetchFromGitHub since this needs a bootstrap curl
   src = fetchurl {
     url = "http://pub.wak.io/nixos/tarballs/nghttp2-${version}.tar.bz2";
-    sha256 = "8027461a231d205394890b2fee34d1c3751e28e7d3f7c1ebc1b557993ea4045e";
+    sha256 = "63c1d70e50f0c8514e261be88b66720df095269791aa008d76c09e0c3a4c085f";
   };
 
   # Configure script searches for a symbol which does not exist in jemalloc on Darwin
@@ -66,6 +66,7 @@ stdenv.mkDerivation rec {
     (mkWith   (optJemalloc != null) "jemalloc"        null)
     (mkWith   false                 "spdylay"         null)
     (mkWith   false                 "cython"          null)
+    (mkWith   false                 "mruby"           null)
   ];
 
   meta = with stdenv.lib; {