2019-04-23 05:50:40 +01:00
|
|
|
{ stdenv, fetchFromGitHub }:
|
2013-05-23 21:58:23 +01:00
|
|
|
|
|
|
|
let
|
2020-02-08 12:17:29 +00:00
|
|
|
version = "2.9.3";
|
2013-05-23 21:58:23 +01:00
|
|
|
in stdenv.mkDerivation {
|
2019-08-13 22:52:01 +01:00
|
|
|
pname = "http-parser";
|
|
|
|
inherit version;
|
2013-05-23 21:58:23 +01:00
|
|
|
|
2019-04-23 05:50:40 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "nodejs";
|
|
|
|
repo = "http-parser";
|
|
|
|
rev = "v${version}";
|
2020-02-08 12:17:29 +00:00
|
|
|
sha256 = "189zi61vczqgmqjd2myjcjbbi5icrk7ccs0kn6nj8hxqiv5j3811";
|
2013-05-23 21:58:23 +01:00
|
|
|
};
|
|
|
|
|
2018-11-05 02:01:48 +00:00
|
|
|
NIX_CFLAGS_COMPILE = "-Wno-error";
|
2013-05-23 21:58:23 +01:00
|
|
|
patches = [ ./build-shared.patch ];
|
2018-11-05 02:01:48 +00:00
|
|
|
makeFlags = [ "DESTDIR=" "PREFIX=$(out)" ];
|
2019-10-26 16:39:27 +01:00
|
|
|
buildFlags = [ "library" ];
|
2018-11-05 02:01:48 +00:00
|
|
|
doCheck = true;
|
|
|
|
checkTarget = "test";
|
2013-05-23 21:58:23 +01:00
|
|
|
|
2018-11-05 02:01:48 +00:00
|
|
|
meta = with stdenv.lib; {
|
2013-05-23 21:58:23 +01:00
|
|
|
description = "An HTTP message parser written in C";
|
2019-04-23 05:50:40 +01:00
|
|
|
homepage = https://github.com/nodejs/http-parser;
|
2018-11-05 02:01:48 +00:00
|
|
|
maintainers = with maintainers; [ matthewbauer ];
|
|
|
|
license = licenses.mit;
|
|
|
|
platforms = platforms.unix;
|
2013-05-23 21:58:23 +01:00
|
|
|
};
|
|
|
|
}
|