2016-04-25 14:10:10 +00:00
|
|
|
{ stdenv, fetchurl, openssl, python, zlib, libuv, v8, utillinux, http-parser
|
|
|
|
, pkgconfig, runCommand, which, libtool
|
|
|
|
, version
|
2016-07-22 08:00:26 +00:00
|
|
|
, sha256 ? null
|
|
|
|
, src ? fetchurl { url = "https://nodejs.org/download/release/v${version}/node-v${version}.tar.xz"; inherit sha256; }
|
2016-07-14 12:56:45 +00:00
|
|
|
, preBuild ? ""
|
2016-07-22 08:00:26 +00:00
|
|
|
, extraConfigFlags ? []
|
|
|
|
, extraBuildInputs ? []
|
2016-04-25 14:10:10 +00:00
|
|
|
, ...
|
|
|
|
}:
|
|
|
|
|
|
|
|
assert stdenv.system != "armv5tel-linux";
|
|
|
|
|
|
|
|
let
|
|
|
|
|
2016-07-22 08:00:26 +00:00
|
|
|
deps = {
|
|
|
|
inherit openssl zlib libuv;
|
2016-04-25 14:10:10 +00:00
|
|
|
} // (stdenv.lib.optionalAttrs (!stdenv.isDarwin) {
|
|
|
|
inherit http-parser;
|
|
|
|
});
|
|
|
|
|
|
|
|
sharedConfigureFlags = name: [
|
|
|
|
"--shared-${name}"
|
|
|
|
"--shared-${name}-includes=${builtins.getAttr name deps}/include"
|
|
|
|
"--shared-${name}-libpath=${builtins.getAttr name deps}/lib"
|
|
|
|
];
|
|
|
|
|
|
|
|
inherit (stdenv.lib) concatMap optional optionals maintainers licenses platforms;
|
|
|
|
|
|
|
|
in stdenv.mkDerivation {
|
|
|
|
|
2016-07-14 12:56:45 +00:00
|
|
|
inherit version src preBuild;
|
2016-04-25 14:10:10 +00:00
|
|
|
|
|
|
|
name = "nodejs-${version}";
|
|
|
|
|
2016-07-22 08:00:26 +00:00
|
|
|
configureFlags = concatMap sharedConfigureFlags (builtins.attrNames deps) ++ [ "--without-dtrace" ] ++ extraConfigFlags;
|
2016-04-25 14:10:10 +00:00
|
|
|
dontDisableStatic = true;
|
|
|
|
prePatch = ''
|
|
|
|
patchShebangs .
|
|
|
|
sed -i 's/raise.*No Xcode or CLT version detected.*/version = "7.0.0"/' tools/gyp/pylib/gyp/xcode_emulation.py
|
|
|
|
'';
|
|
|
|
|
2016-08-08 20:14:01 +00:00
|
|
|
postInstall = ''
|
|
|
|
PATH=$out/bin:$PATH patchShebangs $out
|
|
|
|
'';
|
|
|
|
|
2016-04-25 14:10:10 +00:00
|
|
|
patches = stdenv.lib.optionals stdenv.isDarwin [ ./no-xcode.patch ];
|
|
|
|
|
2016-07-22 08:00:26 +00:00
|
|
|
buildInputs = extraBuildInputs
|
|
|
|
++ [ python which zlib libuv openssl ]
|
2016-04-25 14:10:10 +00:00
|
|
|
++ optionals stdenv.isLinux [ utillinux http-parser ]
|
2016-07-22 08:00:26 +00:00
|
|
|
++ optionals stdenv.isDarwin [ pkgconfig libtool ];
|
2016-04-25 14:10:10 +00:00
|
|
|
setupHook = ./setup-hook.sh;
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
passthru.interpreterName = "nodejs";
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Event-driven I/O framework for the V8 JavaScript engine";
|
|
|
|
homepage = http://nodejs.org;
|
|
|
|
license = licenses.mit;
|
2016-07-19 09:34:39 +00:00
|
|
|
maintainers = [ maintainers.goibhniu maintainers.havvy maintainers.gilligan maintainers.cko ];
|
2016-04-25 14:10:10 +00:00
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
|
|
|
};
|
|
|
|
}
|