2016-04-30 02:01:55 +00:00
|
|
|
{ stdenv, lib, fetchurl, openssl, python, zlib, v8, utillinux, http-parser, c-ares
|
2015-07-09 22:42:31 +00:00
|
|
|
, pkgconfig, runCommand, which, libtool
|
|
|
|
|
|
|
|
# apple frameworks
|
|
|
|
, CoreServices, ApplicationServices, Carbon, Foundation
|
2015-04-03 10:52:40 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
let
|
2016-02-27 16:03:08 +00:00
|
|
|
version = "0.10.42";
|
2015-04-03 10:52:40 +00:00
|
|
|
|
|
|
|
# !!! Should we also do shared libuv?
|
|
|
|
deps = {
|
|
|
|
inherit openssl zlib;
|
|
|
|
|
|
|
|
# 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;
|
|
|
|
})
|
|
|
|
// ({ cares = c-ares; });
|
|
|
|
|
2016-04-30 02:01:55 +00:00
|
|
|
sharedConfigureFlags = name: let drv = builtins.getAttr name deps; in [
|
2015-04-03 10:52:40 +00:00
|
|
|
"--shared-${name}"
|
2016-04-30 02:01:55 +00:00
|
|
|
"--shared-${name}-includes=${lib.getDev drv}/include"
|
|
|
|
"--shared-${name}-libpath=${lib.getLib drv}/lib"
|
2015-04-03 10:52:40 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
inherit (stdenv.lib) concatMap optional optionals maintainers licenses platforms;
|
|
|
|
in stdenv.mkDerivation {
|
|
|
|
name = "nodejs-${version}";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://nodejs.org/dist/v${version}/node-v${version}.tar.gz";
|
2016-02-27 16:03:08 +00:00
|
|
|
sha256 = "01g19mq8b3b828f59x7bv79973w5sw4133ll1dxml37qk0vdbhgb";
|
2015-04-03 10:52:40 +00:00
|
|
|
};
|
|
|
|
|
2015-07-09 22:42:31 +00:00
|
|
|
configureFlags = concatMap sharedConfigureFlags (builtins.attrNames deps) ++
|
|
|
|
stdenv.lib.optional stdenv.isDarwin "--without-dtrace";
|
2015-04-03 10:52:40 +00:00
|
|
|
|
|
|
|
prePatch = ''
|
2015-07-09 22:42:31 +00:00
|
|
|
patchShebangs .
|
2016-01-09 22:38:27 +00:00
|
|
|
sed -i 's/raise.*No Xcode or CLT version detected.*/version = "7.0.0"/' deps/npm/node_modules/node-gyp/gyp/pylib/gyp/xcode_emulation.py
|
|
|
|
sed -i 's/raise.*No Xcode or CLT version detected.*/version = "7.0.0"/' tools/gyp/pylib/gyp/xcode_emulation.py
|
2015-04-03 10:52:40 +00:00
|
|
|
'';
|
|
|
|
|
2015-10-01 23:34:26 +00:00
|
|
|
patches = stdenv.lib.optionals stdenv.isDarwin [ ./default-arch.patch ./no-xcode.patch ];
|
2015-04-03 10:52:40 +00:00
|
|
|
|
2015-07-09 22:42:31 +00:00
|
|
|
postPatch = stdenv.lib.optionalString stdenv.isDarwin ''
|
2015-04-03 10:52:40 +00:00
|
|
|
(cd tools/gyp; patch -Np1 -i ${../../python-modules/gyp/no-darwin-cflags.patch})
|
2015-07-09 22:42:31 +00:00
|
|
|
'';
|
2015-04-03 10:52:40 +00:00
|
|
|
|
|
|
|
buildInputs = [ python which ]
|
|
|
|
++ (optional stdenv.isLinux utillinux)
|
2015-07-09 22:42:31 +00:00
|
|
|
++ optionals stdenv.isDarwin [ pkgconfig openssl libtool CoreServices ApplicationServices Foundation ];
|
|
|
|
propagatedBuildInputs = optionals stdenv.isDarwin [ Carbon ];
|
2015-04-03 10:52:40 +00:00
|
|
|
setupHook = ./setup-hook.sh;
|
|
|
|
|
2015-09-29 00:23:25 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2015-10-17 01:37:45 +00:00
|
|
|
postFixup = ''
|
|
|
|
pushd $out/lib/node_modules/npm/node_modules/node-gyp
|
|
|
|
patch -p2 < ${./no-xcode.patch}
|
|
|
|
popd
|
|
|
|
'';
|
|
|
|
|
2015-04-16 16:42:58 +00:00
|
|
|
passthru.interpreterName = "nodejs-0.10";
|
|
|
|
|
2015-04-03 10:52:40 +00:00
|
|
|
meta = {
|
|
|
|
description = "Event-driven I/O framework for the V8 JavaScript engine";
|
|
|
|
homepage = http://nodejs.org;
|
|
|
|
license = licenses.mit;
|
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
|
|
|
};
|
|
|
|
}
|