2012-09-13 11:32:34 +01:00
|
|
|
{ stdenv, fetchurl, openssl, python, zlib, v8, utillinux }:
|
2012-08-22 23:54:47 +01:00
|
|
|
|
2011-05-05 23:38:04 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2012-12-03 15:05:03 +00:00
|
|
|
version = "0.8.15";
|
2011-05-05 23:38:04 +01:00
|
|
|
name = "nodejs-${version}";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2011-07-31 09:56:09 +01:00
|
|
|
url = "http://nodejs.org/dist/v${version}/node-v${version}.tar.gz";
|
2012-12-03 15:05:03 +00:00
|
|
|
sha256 = "1ccjaw0lqspnrmzcb9jbnh1mf74ny7874m2q4vz83q7kdnf66n0p";
|
2011-05-05 23:38:04 +01:00
|
|
|
};
|
|
|
|
|
2011-12-11 19:38:57 +00:00
|
|
|
configureFlags = [
|
|
|
|
"--openssl-includes=${openssl}/include"
|
|
|
|
"--openssl-libpath=${openssl}/lib"
|
2013-01-07 16:01:50 +00:00
|
|
|
"--shared-v8"
|
|
|
|
"--shared-v8-includes=${v8}/includes"
|
|
|
|
"--shared-v8-libpath=${v8}/lib"
|
2011-12-11 19:38:57 +00:00
|
|
|
];
|
|
|
|
|
2013-01-07 15:52:42 +00:00
|
|
|
#patches = stdenv.lib.optional stdenv.isDarwin ./no-arch-flag.patch;
|
2012-02-25 19:36:24 +00:00
|
|
|
|
|
|
|
prePatch = ''
|
2013-01-07 16:01:50 +00:00
|
|
|
sed -e 's|^#!/usr/bin/env python$|#!${python}/bin/python|g' -i tools/{*.py,waf-light,node-waf} configure
|
2011-05-05 23:38:04 +01:00
|
|
|
'';
|
|
|
|
|
2012-06-21 21:10:06 +01:00
|
|
|
postInstall = ''
|
2012-09-13 11:32:34 +01:00
|
|
|
|
2013-01-07 20:30:57 +00:00
|
|
|
sed -e 's|^#!/usr/bin/env node$|#!'$out'/bin/node|' -i $out/lib/node_modules/npm/bin/npm-cli.js
|
2012-06-21 21:10:06 +01:00
|
|
|
'' + stdenv.lib.optionalString stdenv.isDarwin ''
|
2012-02-25 19:36:24 +00:00
|
|
|
install_name_tool -change libv8.dylib ${v8}/lib/libv8.dylib $out/bin/node
|
|
|
|
'';
|
|
|
|
|
2012-07-25 15:45:04 +01:00
|
|
|
buildInputs = [ python openssl v8 zlib ] ++ stdenv.lib.optional stdenv.isLinux utillinux;
|
2013-02-04 14:21:33 +00:00
|
|
|
|
|
|
|
setupHook = ./setup-hook.sh;
|
2011-05-05 23:38:04 +01:00
|
|
|
|
2011-07-31 09:49:03 +01:00
|
|
|
meta = with stdenv.lib; {
|
2011-05-05 23:38:04 +01: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;
|
|
|
|
};
|
|
|
|
}
|