summary refs log tree commit diff
path: root/pkgs/development/libraries/http-parser
diff options
context:
space:
mode:
authorWill Cohen <willcohen@users.noreply.github.com>2022-02-06 19:47:56 -0500
committerWill Cohen <willcohen@users.noreply.github.com>2022-03-12 15:33:24 -0500
commit7a9b09b2a5ee8895833823669223d886fd0d3f64 (patch)
tree9e86aa481e99d78753f5b9f51d0275d908544383 /pkgs/development/libraries/http-parser
parentb497e8785af9c19cac0290215825e1916c052a34 (diff)
downloadnixpkgs-7a9b09b2a5ee8895833823669223d886fd0d3f64.tar
nixpkgs-7a9b09b2a5ee8895833823669223d886fd0d3f64.tar.gz
nixpkgs-7a9b09b2a5ee8895833823669223d886fd0d3f64.tar.bz2
nixpkgs-7a9b09b2a5ee8895833823669223d886fd0d3f64.tar.lz
nixpkgs-7a9b09b2a5ee8895833823669223d886fd0d3f64.tar.xz
nixpkgs-7a9b09b2a5ee8895833823669223d886fd0d3f64.tar.zst
nixpkgs-7a9b09b2a5ee8895833823669223d886fd0d3f64.zip
http-parser: fix build on armv7l-linux
Diffstat (limited to 'pkgs/development/libraries/http-parser')
-rw-r--r--pkgs/development/libraries/http-parser/default.nix11
1 files changed, 9 insertions, 2 deletions
diff --git a/pkgs/development/libraries/http-parser/default.nix b/pkgs/development/libraries/http-parser/default.nix
index 36ca0b0ca0b..aff5b1ea3c1 100644
--- a/pkgs/development/libraries/http-parser/default.nix
+++ b/pkgs/development/libraries/http-parser/default.nix
@@ -1,4 +1,4 @@
-{ lib, stdenv, fetchFromGitHub }:
+{ lib, stdenv, fetchFromGitHub, fetchpatch }:
 
 stdenv.mkDerivation rec {
   pname = "http-parser";
@@ -12,7 +12,14 @@ stdenv.mkDerivation rec {
   };
 
   NIX_CFLAGS_COMPILE = "-Wno-error";
-  patches = [ ./build-shared.patch ];
+  patches = [
+    ./build-shared.patch
+    # https://github.com/nodejs/http-parser/pull/510
+    (fetchpatch {
+      url = "https://github.com/nodejs/http-parser/commit/4f15b7d510dc7c6361a26a7c6d2f7c3a17f8d878.patch";
+      sha256 = "sha256-rZZMJeow3V1fTnjadRaRa+xTq3pdhZn/eJ4xjxEDoU4=";
+    })
+  ];
   makeFlags = [ "DESTDIR=" "PREFIX=$(out)" ];
   buildFlags = [ "library" ];
   doCheck = true;