about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/http-parser
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/libraries/http-parser')
-rw-r--r--nixpkgs/pkgs/development/libraries/http-parser/build-shared.patch30
-rw-r--r--nixpkgs/pkgs/development/libraries/http-parser/default.nix30
2 files changed, 60 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/libraries/http-parser/build-shared.patch b/nixpkgs/pkgs/development/libraries/http-parser/build-shared.patch
new file mode 100644
index 000000000000..5922cdfb5848
--- /dev/null
+++ b/nixpkgs/pkgs/development/libraries/http-parser/build-shared.patch
@@ -0,0 +1,30 @@
+diff -Naur http-parser-2.1-orig/http_parser.gyp http-parser-2.1/http_parser.gyp
+--- http-parser-2.1-orig/http_parser.gyp	2013-03-26 18:35:20.000000000 -0400
++++ http-parser-2.1/http_parser.gyp	2013-05-23 16:47:49.280488341 -0400
+@@ -21,7 +21,7 @@
+       },
+       'Release': {
+         'defines': [ 'NDEBUG' ],
+-        'cflags': [ '-Wall', '-Wextra', '-O3' ],
++        'cflags': [ '-Wall', '-Wextra', '-O3', '-fPIC' ],
+         'msvs_settings': {
+           'VCCLCompilerTool': {
+             'RuntimeLibrary': 0, # static release
+@@ -50,7 +50,7 @@
+   'targets': [
+     {
+       'target_name': 'http_parser',
+-      'type': 'static_library',
++      'type': 'shared_library',
+       'include_dirs': [ '.' ],
+       'direct_dependent_settings': {
+         'defines': [ 'HTTP_PARSER_STRICT=0' ],
+@@ -73,7 +73,7 @@
+ 
+     {
+       'target_name': 'http_parser_strict',
+-      'type': 'static_library',
++      'type': 'shared_library',
+       'include_dirs': [ '.' ],
+       'direct_dependent_settings': {
+         'defines': [ 'HTTP_PARSER_STRICT=1' ],
diff --git a/nixpkgs/pkgs/development/libraries/http-parser/default.nix b/nixpkgs/pkgs/development/libraries/http-parser/default.nix
new file mode 100644
index 000000000000..4b1a695ca551
--- /dev/null
+++ b/nixpkgs/pkgs/development/libraries/http-parser/default.nix
@@ -0,0 +1,30 @@
+{ stdenv, fetchFromGitHub }:
+
+let
+  version = "2.9.2";
+in stdenv.mkDerivation {
+  pname = "http-parser";
+  inherit version;
+
+  src = fetchFromGitHub {
+    owner = "nodejs";
+    repo = "http-parser";
+    rev = "v${version}";
+    sha256 = "1qs6x3n2nrcj1wiik5pg5i16inykf7rcfdfdy7rwyzf40pvdl3c2";
+  };
+
+  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;
+  };
+}