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?
|
# !!! Should we also do shared libuv?
|
||||||
deps = {
|
deps = {
|
||||||
inherit openssl zlib http-parser;
|
inherit openssl zlib;
|
||||||
cares = c-ares;
|
cares = c-ares;
|
||||||
|
|
||||||
# disabled system v8 because v8 3.14 no longer receives security fixes
|
# 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
|
# we fall back to nodejs' internal v8 copy which receives backports for now
|
||||||
# inherit v8
|
# inherit v8
|
||||||
|
} // stdenv.lib.optionalAttrs (!stdenv.isDarwin) {
|
||||||
|
inherit http-parser;
|
||||||
};
|
};
|
||||||
|
|
||||||
sharedConfigureFlags = name: [
|
sharedConfigureFlags = name: [
|
||||||
|
Loading…
x
Reference in New Issue
Block a user