aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/development/libraries/http-parser/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'infra/libkookie/nixpkgs/pkgs/development/libraries/http-parser/default.nix')
-rw-r--r--infra/libkookie/nixpkgs/pkgs/development/libraries/http-parser/default.nix30
1 files changed, 30 insertions, 0 deletions
diff --git a/infra/libkookie/nixpkgs/pkgs/development/libraries/http-parser/default.nix b/infra/libkookie/nixpkgs/pkgs/development/libraries/http-parser/default.nix
new file mode 100644
index 000000000000..203fcaa19ec8
--- /dev/null
+++ b/infra/libkookie/nixpkgs/pkgs/development/libraries/http-parser/default.nix
@@ -0,0 +1,30 @@
+{ stdenv, fetchFromGitHub }:
+
+let
+ version = "2.9.4";
+in stdenv.mkDerivation {
+ pname = "http-parser";
+ inherit version;
+
+ src = fetchFromGitHub {
+ owner = "nodejs";
+ repo = "http-parser";
+ rev = "v${version}";
+ sha256 = "1vda4dp75pjf5fcph73sy0ifm3xrssrmf927qd1x8g3q46z0cv6c";
+ };
+
+ NIX_CFLAGS_COMPILE = "-Wno-error";
+ patches = [ ./build-shared.patch ];
+ makeFlags = [ "DESTDIR=" "PREFIX=$(out)" ];
+ buildFlags = [ "library" ];
+ doCheck = true;
+ checkTarget = "test";
+
+ meta = with stdenv.lib; {
+ description = "An HTTP message parser written in C";
+ homepage = "https://github.com/nodejs/http-parser";
+ maintainers = with maintainers; [ matthewbauer ];
+ license = licenses.mit;
+ platforms = platforms.unix;
+ };
+}