2012-07-25 16:45:04 +02:00
|
|
|
{ stdenv, fetchurl, openssl, python, zlib, v8, linkV8Headers ? false, utillinux }:
|
2011-05-06 00:38:04 +02:00
|
|
|
|
2012-08-23 00:54:47 +02:00
|
|
|
let
|
|
|
|
|
|
|
|
espipe_patch = fetchurl {
|
|
|
|
url = https://github.com/joyent/libuv/commit/0ac2fdc55455794e057e4999a2e785ca8fbfb1b2.patch;
|
|
|
|
sha256 = "0mqgbsz23b3zp19dwk12ys14b031hssmlp40dylb7psj937qcpzi";
|
|
|
|
};
|
|
|
|
|
|
|
|
in
|
|
|
|
|
2011-05-06 00:38:04 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2012-08-23 00:54:47 +02:00
|
|
|
version = "0.8.8";
|
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";
|
2012-08-23 00:54:47 +02:00
|
|
|
sha256 = "0cri5r191l5pw8a8pf3gs7hfjm3rrz6kdnm3l8wghmp9p12p0aq9";
|
2011-05-06 00:38:04 +02:00
|
|
|
};
|
|
|
|
|
2011-12-11 20:38:57 +01:00
|
|
|
configureFlags = [
|
|
|
|
"--openssl-includes=${openssl}/include"
|
|
|
|
"--openssl-libpath=${openssl}/lib"
|
2012-01-18 21:32:26 +01:00
|
|
|
"--shared-v8"
|
|
|
|
"--shared-v8-includes=${v8}/includes"
|
|
|
|
"--shared-v8-libpath=${v8}/lib"
|
2011-12-11 20:38:57 +01:00
|
|
|
];
|
|
|
|
|
2012-02-25 20:36:24 +01:00
|
|
|
patches = stdenv.lib.optional stdenv.isDarwin ./no-arch-flag.patch;
|
|
|
|
|
|
|
|
prePatch = ''
|
2012-07-25 16:45:04 +02:00
|
|
|
sed -e 's|^#!/usr/bin/env python$|#!${python}/bin/python|g' -i tools/{*.py,waf-light,node-waf} configure
|
2012-08-23 00:54:47 +02:00
|
|
|
pushd deps/uv
|
|
|
|
patch -p 1 < ${espipe_patch}
|
|
|
|
popd
|
2011-05-06 00:38:04 +02:00
|
|
|
'';
|
|
|
|
|
2012-06-21 22:10:06 +02:00
|
|
|
postInstall = ''
|
|
|
|
sed -e 's|^#!/usr/bin/env node$|#!'$out'/bin/node|' -i $out/lib/node_modules/npm/bin/npm-cli.js
|
2012-07-05 08:14:24 +02:00
|
|
|
'' + stdenv.lib.optionalString linkV8Headers '' # helps binary npms
|
|
|
|
ln -s ${v8}/include/* $out/include
|
2012-06-21 22:10:06 +02:00
|
|
|
'' + stdenv.lib.optionalString stdenv.isDarwin ''
|
2012-02-25 20:36:24 +01:00
|
|
|
install_name_tool -change libv8.dylib ${v8}/lib/libv8.dylib $out/bin/node
|
|
|
|
'';
|
|
|
|
|
2012-07-25 16:45:04 +02:00
|
|
|
buildInputs = [ python openssl v8 zlib ] ++ stdenv.lib.optional stdenv.isLinux utillinux;
|
2011-05-06 00:38:04 +02:00
|
|
|
|
2011-07-31 10:49:03 +02:00
|
|
|
meta = with stdenv.lib; {
|
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;
|
|
|
|
maintainers = [ maintainers.goibhniu ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|