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