nodejs: disable usage of http-parser library on darwin, because it breaks the build

This commit is contained in:
Sander van der Burg 2014-10-22 17:51:24 +02:00
parent 9a48f6f9ef
commit cddc7382ef

View File

@ -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: [