Implemented an unelegant workaround that allows nodejs to be used on darwin using xcode
This commit is contained in:
parent
8db4152ddf
commit
0576a0054b
@ -12,26 +12,36 @@ stdenv.mkDerivation rec {
|
|||||||
configureFlags = [
|
configureFlags = [
|
||||||
"--openssl-includes=${openssl}/include"
|
"--openssl-includes=${openssl}/include"
|
||||||
"--openssl-libpath=${openssl}/lib"
|
"--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"
|
||||||
"--shared-v8-includes=${v8}/includes"
|
"--shared-v8-includes=${v8}/includes"
|
||||||
"--shared-v8-libpath=${v8}/lib"
|
"--shared-v8-libpath=${v8}/lib"
|
||||||
];
|
] else []);
|
||||||
|
|
||||||
#patches = stdenv.lib.optional stdenv.isDarwin ./no-arch-flag.patch;
|
#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 = ''
|
prePatch = ''
|
||||||
sed -e 's|^#!/usr/bin/env python$|#!${python}/bin/python|g' -i tools/{*.py,waf-light,node-waf} configure
|
sed -e 's|^#!/usr/bin/env python$|#!${python}/bin/python|g' -i tools/{*.py,waf-light,node-waf} configure
|
||||||
'';
|
'';
|
||||||
|
|
||||||
postInstall = ''
|
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
|
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 ''
|
'' /*+ stdenv.lib.optionalString stdenv.isDarwin ''
|
||||||
install_name_tool -change libv8.dylib ${v8}/lib/libv8.dylib $out/bin/node
|
install_name_tool -change libv8.dylib ${v8}/lib/libv8.dylib $out/bin/node
|
||||||
'';
|
''*/;
|
||||||
|
|
||||||
buildInputs = [ python openssl v8 zlib ] ++ stdenv.lib.optional stdenv.isLinux utillinux;
|
buildInputs = [ python openssl zlib ]
|
||||||
|
++ stdenv.lib.optional stdenv.isLinux utillinux
|
||||||
|
++ stdenv.lib.optional (!stdenv.isDarwin) v8;
|
||||||
setupHook = ./setup-hook.sh;
|
setupHook = ./setup-hook.sh;
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user