http-parser: Bump
Signed-off-by: Shea Levy <shea@shealevy.com>
This commit is contained in:
parent
72b5403ee8
commit
3c9ed5b51a
|
@ -1,13 +1,13 @@
|
||||||
{ stdenv, fetchurl, gyp, utillinux, python, fixDarwinDylibNames }:
|
{ stdenv, fetchurl, gyp, utillinux, python, fixDarwinDylibNames }:
|
||||||
|
|
||||||
let
|
let
|
||||||
version = "2.1";
|
version = "2.2.1";
|
||||||
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 = "16a2w5z4g2bma25fqcrkpidqzlq8a2jxkk93ajl721q85406j105";
|
sha256 = "0p8wmchqsj9kwa8pg2is7v0h83q5lqns3vnm6sxrld7gaz979zh5";
|
||||||
};
|
};
|
||||||
|
|
||||||
patches = [ ./build-shared.patch ];
|
patches = [ ./build-shared.patch ];
|
||||||
|
|
|
@ -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
|
let
|
||||||
dtrace = runCommand "dtrace-native" {} ''
|
dtrace = runCommand "dtrace-native" {} ''
|
||||||
|
@ -10,9 +10,8 @@ let
|
||||||
|
|
||||||
# !!! Should we also do shared libuv?
|
# !!! Should we also do shared libuv?
|
||||||
deps = {
|
deps = {
|
||||||
inherit v8 openssl zlib;
|
inherit v8 openssl zlib http-parser;
|
||||||
cares = c-ares;
|
cares = c-ares;
|
||||||
http-parser = http_parser;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
sharedConfigureFlags = name: [
|
sharedConfigureFlags = name: [
|
||||||
|
|
|
@ -4447,7 +4447,7 @@ let
|
||||||
|
|
||||||
hsqldb = callPackage ../development/libraries/java/hsqldb { };
|
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 { };
|
hunspell = callPackage ../development/libraries/hunspell { };
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue