summary refs log tree commit diff
path: root/pkgs/development/libraries/http-parser
diff options
context:
space:
mode:
authorPascal Wittmann <mail@pascal-wittmann.de>2015-05-19 21:46:12 +0200
committerPascal Wittmann <mail@pascal-wittmann.de>2015-05-19 21:46:12 +0200
commit2286e2ef8f75cdbbc2c126b4569510d9e8c25a7d (patch)
tree842072278b3fbdd6fabd7a3849bc178752d5df3e /pkgs/development/libraries/http-parser
parentd811c6cf41f45e15262b22fa3de04aa10c3e7b3e (diff)
downloadnixpkgs-2286e2ef8f75cdbbc2c126b4569510d9e8c25a7d.tar
nixpkgs-2286e2ef8f75cdbbc2c126b4569510d9e8c25a7d.tar.gz
nixpkgs-2286e2ef8f75cdbbc2c126b4569510d9e8c25a7d.tar.bz2
nixpkgs-2286e2ef8f75cdbbc2c126b4569510d9e8c25a7d.tar.lz
nixpkgs-2286e2ef8f75cdbbc2c126b4569510d9e8c25a7d.tar.xz
nixpkgs-2286e2ef8f75cdbbc2c126b4569510d9e8c25a7d.tar.zst
nixpkgs-2286e2ef8f75cdbbc2c126b4569510d9e8c25a7d.zip
http-parser: update from 2.3 to 2.5.0
closes #7709
Diffstat (limited to 'pkgs/development/libraries/http-parser')
-rw-r--r--pkgs/development/libraries/http-parser/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/libraries/http-parser/default.nix b/pkgs/development/libraries/http-parser/default.nix
index 9d5b11501fc..e7247332059 100644
--- a/pkgs/development/libraries/http-parser/default.nix
+++ b/pkgs/development/libraries/http-parser/default.nix
@@ -1,13 +1,13 @@
 { stdenv, fetchurl, gyp, utillinux, python, fixDarwinDylibNames }:
 
 let
-  version = "2.3";
+  version = "2.5.0";
 in stdenv.mkDerivation {
   name = "http-parser-${version}";
 
   src = fetchurl {
     url = "https://github.com/joyent/http-parser/archive/v${version}.tar.gz";
-    sha256 = "1qnm466wp8zncr8na4xj2wndfzzfiahafhsaigj8cv35nx56pziv";
+    sha256 = "108lh05pl4i5w7hmkw07k9wklk5pbh705pw1qyz5zvp6yicbmd73";
   };
 
   patches = [ ./build-shared.patch ];