http-parser: update from 2.3 to 2.5.0

closes #7709
This commit is contained in:
Pascal Wittmann 2015-05-19 21:46:12 +02:00
parent d811c6cf41
commit 2286e2ef8f

View File

@ -1,13 +1,13 @@
{ stdenv, fetchurl, gyp, utillinux, python, fixDarwinDylibNames }: { stdenv, fetchurl, gyp, utillinux, python, fixDarwinDylibNames }:
let let
version = "2.3"; version = "2.5.0";
in stdenv.mkDerivation { in stdenv.mkDerivation {
name = "http-parser-${version}"; name = "http-parser-${version}";
src = fetchurl { src = fetchurl {
url = "https://github.com/joyent/http-parser/archive/v${version}.tar.gz"; url = "https://github.com/joyent/http-parser/archive/v${version}.tar.gz";
sha256 = "1qnm466wp8zncr8na4xj2wndfzzfiahafhsaigj8cv35nx56pziv"; sha256 = "108lh05pl4i5w7hmkw07k9wklk5pbh705pw1qyz5zvp6yicbmd73";
}; };
patches = [ ./build-shared.patch ]; patches = [ ./build-shared.patch ];