2014-01-15 12:39:52 +00:00
|
|
|
{ stdenv, fetchurl, gyp, utillinux, python, fixDarwinDylibNames }:
|
2013-05-23 21:58:23 +01:00
|
|
|
|
|
|
|
let
|
2014-10-10 21:47:37 +01:00
|
|
|
version = "2.3";
|
2013-05-23 21:58:23 +01:00
|
|
|
in stdenv.mkDerivation {
|
|
|
|
name = "http-parser-${version}";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/joyent/http-parser/archive/v${version}.tar.gz";
|
2014-10-10 21:47:37 +01:00
|
|
|
sha256 = "1qnm466wp8zncr8na4xj2wndfzzfiahafhsaigj8cv35nx56pziv";
|
2013-05-23 21:58:23 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
patches = [ ./build-shared.patch ];
|
|
|
|
|
|
|
|
configurePhase = "gyp -f make --depth=`pwd` http_parser.gyp";
|
|
|
|
|
|
|
|
buildFlags = [ "BUILDTYPE=Release" ];
|
|
|
|
|
2014-01-15 12:39:52 +00:00
|
|
|
buildInputs =
|
|
|
|
[ gyp ]
|
|
|
|
++ stdenv.lib.optional stdenv.isLinux utillinux
|
|
|
|
++ stdenv.lib.optionals stdenv.isDarwin [ python fixDarwinDylibNames ];
|
2013-05-23 21:58:23 +01:00
|
|
|
|
2013-05-28 22:37:47 +01:00
|
|
|
doCheck = !stdenv.isDarwin;
|
2013-05-23 21:58:23 +01:00
|
|
|
|
|
|
|
checkPhase = ''
|
|
|
|
out/Release/test-nonstrict
|
|
|
|
out/Release/test-strict
|
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase = ''
|
2013-05-28 22:37:47 +01:00
|
|
|
mkdir -p $out/lib
|
|
|
|
mv out/Release/${if stdenv.isDarwin then "*.dylib" else "lib.target/*"} $out/lib
|
2013-05-23 21:58:23 +01:00
|
|
|
|
|
|
|
mkdir -p $out/include
|
|
|
|
mv http_parser.h $out/include
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "An HTTP message parser written in C";
|
|
|
|
|
|
|
|
homepage = https://github.com/joyent/http-parser;
|
|
|
|
|
|
|
|
license = stdenv.lib.licenses.mit;
|
|
|
|
|
2014-04-23 13:26:16 +01:00
|
|
|
maintainers = [ stdenv.lib.maintainers.shlevy ];
|
2013-05-23 21:58:23 +01:00
|
|
|
};
|
|
|
|
}
|