about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/llhttp
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/libraries/llhttp')
-rw-r--r--nixpkgs/pkgs/development/libraries/llhttp/default.nix37
1 files changed, 37 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/libraries/llhttp/default.nix b/nixpkgs/pkgs/development/libraries/llhttp/default.nix
new file mode 100644
index 000000000000..15b548af70b3
--- /dev/null
+++ b/nixpkgs/pkgs/development/libraries/llhttp/default.nix
@@ -0,0 +1,37 @@
+{ lib, stdenv, fetchFromGitHub, cmake, testers }:
+
+stdenv.mkDerivation (finalAttrs: {
+  pname = "llhttp";
+  version = "9.2.0";
+
+  src = fetchFromGitHub {
+    owner = "nodejs";
+    repo = "llhttp";
+    rev = "release/v${finalAttrs.version}";
+    hash = "sha256-DX/CuTyvc2OfAVWvlJr6wVHwSuqWmqQt34vM1FEazwE=";
+  };
+
+  outputs = [ "out" "dev" ];
+
+  nativeBuildInputs = [
+    cmake
+  ];
+
+  cmakeFlags = [
+    "-DBUILD_STATIC_LIBS=ON"
+  ];
+
+  passthru.tests.pkg-config = testers.hasPkgConfigModules {
+    package = finalAttrs.finalPackage;
+  };
+
+  meta = with lib; {
+    description = "Port of http_parser to llparse";
+    homepage = "https://llhttp.org/";
+    changelog = "https://github.com/nodejs/llhttp/releases/tag/release/v${finalAttrs.version}";
+    license = licenses.mit;
+    pkgConfigModules = [ "libllhttp" ];
+    maintainers = [ maintainers.marsam ];
+    platforms = platforms.all;
+  };
+})