mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
55 lines
1.8 KiB
Nix
55 lines
1.8 KiB
Nix
{ stdenv, fetchurl, openssl, python, zlib, v8, utillinux }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "0.8.15";
|
|
name = "nodejs-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "http://nodejs.org/dist/v${version}/node-v${version}.tar.gz";
|
|
sha256 = "1ccjaw0lqspnrmzcb9jbnh1mf74ny7874m2q4vz83q7kdnf66n0p";
|
|
};
|
|
|
|
configureFlags = [
|
|
"--openssl-includes=${openssl}/include"
|
|
"--openssl-libpath=${openssl}/lib"
|
|
]
|
|
++ (if !stdenv.isDarwin then [ # Shared V8 is broken on Mac OS X. Who can fix V8 on Darwin makes me very happy, but I gave up studying python-gyp.
|
|
"--shared-v8"
|
|
"--shared-v8-includes=${v8}/includes"
|
|
"--shared-v8-libpath=${v8}/lib"
|
|
] else []);
|
|
|
|
#patches = stdenv.lib.optional stdenv.isDarwin ./no-arch-flag.patch;
|
|
|
|
# Expose the host compiler on darwin, which is the only compiler capable of building it
|
|
preConfigure = stdenv.lib.optionalString stdenv.isDarwin ''
|
|
export OLDPATH=$PATH
|
|
export PATH=/usr/bin:$PATH
|
|
'';
|
|
|
|
prePatch = ''
|
|
sed -e 's|^#!/usr/bin/env python$|#!${python}/bin/python|g' -i tools/{*.py,waf-light,node-waf} configure
|
|
'';
|
|
|
|
postInstall = stdenv.lib.optionalString stdenv.isDarwin ''
|
|
export PATH=$OLDPATH
|
|
'' + ''
|
|
sed -e 's|^#!/usr/bin/env node$|#!'$out'/bin/node|' -i $out/lib/node_modules/npm/bin/npm-cli.js
|
|
'' /*+ stdenv.lib.optionalString stdenv.isDarwin ''
|
|
install_name_tool -change libv8.dylib ${v8}/lib/libv8.dylib $out/bin/node
|
|
''*/;
|
|
|
|
buildInputs = [ python openssl zlib ]
|
|
++ stdenv.lib.optional stdenv.isLinux utillinux
|
|
++ stdenv.lib.optional (!stdenv.isDarwin) v8;
|
|
setupHook = ./setup-hook.sh;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Event-driven I/O framework for the V8 JavaScript engine";
|
|
homepage = http://nodejs.org;
|
|
license = licenses.mit;
|
|
maintainers = [ maintainers.goibhniu ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|