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
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2012-07-25 16:45:04 +02:00
|
|
|
version = "0.8.3";
|
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-07-25 16:45:04 +02:00
|
|
|
sha256 = "0dgcw6qpgvsxcvcbkmvpjz2i9f2r286zcrcg0jnxnds9fj41s2k0";
|
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
|
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;
|
|
|
|
};
|
|
|
|
}
|