http-parser: Bump

Signed-off-by: Shea Levy <shea@shealevy.com>
This commit is contained in:
Shea Levy 2014-02-03 18:37:20 -05:00
parent 72b5403ee8
commit 3c9ed5b51a
3 changed files with 5 additions and 6 deletions

View file

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

View file

@ -1,4 +1,4 @@
{ stdenv, fetchurl, openssl, python, zlib, v8, utillinux, http_parser, c-ares, pkgconfig, runCommand }:
{ stdenv, fetchurl, openssl, python, zlib, v8, utillinux, http-parser, c-ares, pkgconfig, runCommand }:
let
dtrace = runCommand "dtrace-native" {} ''
@ -10,9 +10,8 @@ let
# !!! Should we also do shared libuv?
deps = {
inherit v8 openssl zlib;
inherit v8 openssl zlib http-parser;
cares = c-ares;
http-parser = http_parser;
};
sharedConfigureFlags = name: [

View file

@ -4447,7 +4447,7 @@ let
hsqldb = callPackage ../development/libraries/java/hsqldb { };
http_parser = callPackage ../development/libraries/http-parser { inherit (pythonPackages) gyp; };
http-parser = callPackage ../development/libraries/http-parser { inherit (pythonPackages) gyp; };
hunspell = callPackage ../development/libraries/hunspell { };