2016-10-17 13:08:08 +01:00
|
|
|
{ stdenv, fetchurl, python2Packages, utillinux, fixDarwinDylibNames }:
|
2013-05-23 21:58:23 +01:00
|
|
|
|
|
|
|
let
|
2018-02-27 02:44:03 +00:00
|
|
|
version = "2.8.0";
|
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";
|
2018-02-27 02:44:03 +00:00
|
|
|
sha256 = "17a7k3nxv2p1sp2x5d89wr51vk770753vz6qnlp2gz7nkgwwcxvj";
|
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 =
|
2016-10-17 13:08:08 +01:00
|
|
|
[ python2Packages.gyp ]
|
2014-01-15 12:39:52 +00:00
|
|
|
++ stdenv.lib.optional stdenv.isLinux utillinux
|
2016-10-17 13:08:08 +01:00
|
|
|
++ stdenv.lib.optionals stdenv.isDarwin [ python2Packages.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;
|
2016-10-31 13:30:39 +00:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2013-05-23 21:58:23 +01:00
|
|
|
};
|
|
|
|
}
|