2013-05-29 00:38:16 +02:00
|
|
|
{ stdenv, fetchurl, openssl, python, zlib, v8, utillinux, http_parser, c-ares, pkgconfig, runCommand }:
|
2012-08-23 00:54:47 +02:00
|
|
|
|
2013-05-23 23:46:07 +02:00
|
|
|
let
|
2013-05-29 00:38:16 +02:00
|
|
|
dtrace = runCommand "dtrace-native" {} ''
|
|
|
|
mkdir -p $out/bin
|
|
|
|
ln -sv /usr/sbin/dtrace $out/bin
|
|
|
|
'';
|
|
|
|
|
2013-10-19 13:51:57 +02:00
|
|
|
version = "0.10.21";
|
2013-05-23 23:46:07 +02:00
|
|
|
|
|
|
|
# !!! Should we also do shared libuv?
|
|
|
|
deps = {
|
|
|
|
inherit v8 openssl zlib;
|
|
|
|
cares = c-ares;
|
|
|
|
http-parser = http_parser;
|
|
|
|
};
|
|
|
|
|
|
|
|
sharedConfigureFlags = name: [
|
|
|
|
"--shared-${name}"
|
|
|
|
"--shared-${name}-includes=${builtins.getAttr name deps}/include"
|
|
|
|
"--shared-${name}-libpath=${builtins.getAttr name deps}/lib"
|
|
|
|
];
|
|
|
|
|
2013-05-29 00:38:16 +02:00
|
|
|
inherit (stdenv.lib) concatMap optional optionals maintainers licenses platforms;
|
2013-05-23 23:46:07 +02:00
|
|
|
in stdenv.mkDerivation {
|
2011-05-06 00:38:04 +02:00
|
|
|
name = "nodejs-${version}";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2011-07-31 10:56:09 +02:00
|
|
|
url = "http://nodejs.org/dist/v${version}/node-v${version}.tar.gz";
|
2013-10-19 13:51:57 +02:00
|
|
|
sha256 = "038l4j0ilrsmc6m2z2qprqs82z7p4940scb8597hcmhp5kr5n4kw";
|
2011-05-06 00:38:04 +02:00
|
|
|
};
|
|
|
|
|
2013-05-23 23:46:07 +02:00
|
|
|
configureFlags = concatMap sharedConfigureFlags (builtins.attrNames deps);
|
2013-03-14 13:52:45 +01:00
|
|
|
|
2012-02-25 20:36:24 +01:00
|
|
|
prePatch = ''
|
2013-05-23 23:46:07 +02:00
|
|
|
sed -e 's|^#!/usr/bin/env python$|#!${python}/bin/python|g' -i configure
|
2011-05-06 00:38:04 +02:00
|
|
|
'';
|
|
|
|
|
2013-05-29 00:38:16 +02:00
|
|
|
patches = if stdenv.isDarwin then [ ./no-xcode.patch ] else null;
|
|
|
|
|
|
|
|
postPatch = if stdenv.isDarwin then ''
|
|
|
|
(cd tools/gyp; patch -Np1 -i ${../../python-modules/gyp/no-darwin-cflags.patch})
|
|
|
|
'' else null;
|
|
|
|
|
2013-05-23 23:46:07 +02:00
|
|
|
buildInputs = [ python ]
|
2013-05-29 00:38:16 +02:00
|
|
|
++ (optional stdenv.isLinux utillinux)
|
|
|
|
++ optionals stdenv.isDarwin [ pkgconfig openssl dtrace ];
|
2013-02-04 15:21:33 +01:00
|
|
|
setupHook = ./setup-hook.sh;
|
2011-05-06 00:38:04 +02:00
|
|
|
|
2013-05-23 23:46:07 +02:00
|
|
|
meta = {
|
2011-05-06 00:38:04 +02:00
|
|
|
description = "Event-driven I/O framework for the V8 JavaScript engine";
|
|
|
|
homepage = http://nodejs.org;
|
|
|
|
license = licenses.mit;
|
2013-05-23 23:46:07 +02:00
|
|
|
maintainers = [ maintainers.goibhniu maintainers.shlevy ];
|
2011-05-06 00:38:04 +02:00
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|