http-parser: fix build on armv7l-linux

main
Will Cohen 2 years ago
parent b497e8785a
commit 7a9b09b2a5
  1. 11
      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;

Loading…
Cancel
Save