mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 06:31:02 +00:00
nodejs: disable usage of http-parser library on darwin, because it breaks the build
This commit is contained in:
parent
9a48f6f9ef
commit
cddc7382ef
|
@ -10,12 +10,14 @@ let
|
|||
|
||||
# !!! Should we also do shared libuv?
|
||||
deps = {
|
||||
inherit openssl zlib http-parser;
|
||||
inherit openssl zlib;
|
||||
cares = c-ares;
|
||||
|
||||
# disabled system v8 because v8 3.14 no longer receives security fixes
|
||||
# we fall back to nodejs' internal v8 copy which receives backports for now
|
||||
# inherit v8
|
||||
} // stdenv.lib.optionalAttrs (!stdenv.isDarwin) {
|
||||
inherit http-parser;
|
||||
};
|
||||
|
||||
sharedConfigureFlags = name: [
|
||||
|
|
Loading…
Reference in a new issue