nixpkgs/pkgs/development/web/nodejs/default.nix

62 lines
1.8 KiB
Nix
Raw Normal View History

2015-02-22 11:41:33 +00:00
{ stdenv, fetchurl, openssl, python, zlib, libuv, v8, utillinux, http-parser
2015-06-21 07:56:26 +00:00
, pkgconfig, runCommand, which, libtool, unstableVersion ? false
}:
# nodejs 0.12 can't be built on armv5tel. Armv6 with FPU, minimum I think.
# Related post: http://zo0ok.com/techfindings/archives/1820
assert stdenv.system != "armv5tel-linux";
let
2015-07-12 19:37:40 +00:00
version = "0.12.7";
deps = {
2015-02-22 11:41:33 +00:00
inherit openssl zlib libuv;
# 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: [
"--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 {
name = "nodejs-${version}";
src = fetchurl {
url = "http://nodejs.org/dist/v${version}/node-v${version}.tar.gz";
2015-07-12 19:37:40 +00:00
sha256 = "17gk29zbw58l0sjjfw86acp39pkiblnq0gsq1jdrd70w0pgn8gdj";
};
2015-06-21 07:56:26 +00:00
configureFlags = concatMap sharedConfigureFlags (builtins.attrNames deps) ++ [ "--without-dtrace" ];
prePatch = ''
2015-07-09 22:43:01 +00:00
patchShebangs .
'';
2015-07-09 22:43:01 +00:00
patches = stdenv.lib.optional stdenv.isDarwin ./no-xcode.patch;
2015-06-21 07:56:26 +00:00
buildInputs = [ python which ]
++ (optional stdenv.isLinux utillinux)
2015-06-21 07:56:26 +00:00
++ optionals stdenv.isDarwin [ pkgconfig openssl libtool ];
setupHook = ./setup-hook.sh;
2015-06-21 07:56:26 +00:00
enableParallelBuilding = true;
passthru.interpreterName = "nodejs";
meta = {
description = "Event-driven I/O framework for the V8 JavaScript engine";
homepage = http://nodejs.org;
license = licenses.mit;
2015-07-01 12:11:05 +00:00
maintainers = [ maintainers.goibhniu maintainers.havvy ];
platforms = platforms.linux ++ platforms.darwin;
};
}