http-parser: cleanup
This commit is contained in:
parent
69522a0acf
commit
4056c436c9
@ -1,4 +1,4 @@
|
|||||||
{ stdenv, fetchurl, python2Packages, utillinux, fixDarwinDylibNames }:
|
{ stdenv, fetchurl }:
|
||||||
|
|
||||||
let
|
let
|
||||||
version = "2.8.1";
|
version = "2.8.1";
|
||||||
@ -10,38 +10,18 @@ in stdenv.mkDerivation {
|
|||||||
sha256 = "15ids8k2f0xhnnxh4m85w2f78pg5ndiwrpl24kyssznnp1l5yqai";
|
sha256 = "15ids8k2f0xhnnxh4m85w2f78pg5ndiwrpl24kyssznnp1l5yqai";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
NIX_CFLAGS_COMPILE = "-Wno-error";
|
||||||
patches = [ ./build-shared.patch ];
|
patches = [ ./build-shared.patch ];
|
||||||
|
makeFlags = [ "DESTDIR=" "PREFIX=$(out)" ];
|
||||||
|
buildFlags = "library";
|
||||||
|
doCheck = true;
|
||||||
|
checkTarget = "test";
|
||||||
|
|
||||||
configurePhase = "gyp -f make --depth=`pwd` http_parser.gyp";
|
meta = with stdenv.lib; {
|
||||||
|
|
||||||
buildFlags = [ "BUILDTYPE=Release" ];
|
|
||||||
|
|
||||||
buildInputs =
|
|
||||||
[ python2Packages.gyp ]
|
|
||||||
++ stdenv.lib.optional stdenv.isLinux utillinux
|
|
||||||
++ stdenv.lib.optionals stdenv.isDarwin [ python2Packages.python fixDarwinDylibNames ];
|
|
||||||
|
|
||||||
doCheck = !stdenv.isDarwin;
|
|
||||||
|
|
||||||
checkPhase = ''
|
|
||||||
out/Release/test-nonstrict
|
|
||||||
out/Release/test-strict
|
|
||||||
'';
|
|
||||||
|
|
||||||
installPhase = ''
|
|
||||||
mkdir -p $out/lib
|
|
||||||
mv out/Release/${if stdenv.isDarwin then "*.dylib" else "lib.target/*"} $out/lib
|
|
||||||
|
|
||||||
mkdir -p $out/include
|
|
||||||
mv http_parser.h $out/include
|
|
||||||
'';
|
|
||||||
|
|
||||||
meta = {
|
|
||||||
description = "An HTTP message parser written in C";
|
description = "An HTTP message parser written in C";
|
||||||
|
|
||||||
homepage = https://github.com/joyent/http-parser;
|
homepage = https://github.com/joyent/http-parser;
|
||||||
|
maintainers = with maintainers; [ matthewbauer ];
|
||||||
license = stdenv.lib.licenses.mit;
|
license = licenses.mit;
|
||||||
platforms = stdenv.lib.platforms.unix;
|
platforms = platforms.unix;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user