Merge pull request #8597 from aflatter/nodejs-darwin

nodejs: Don't apply no-darwin-cflags
This commit is contained in:
lethalman 2015-07-04 13:51:39 +02:00
commit 6354ed444f

View File

@ -47,9 +47,6 @@ in stdenv.mkDerivation {
patches = if stdenv.isDarwin then [ ./no-xcode.patch ] else null;
postPatch = if stdenv.isDarwin then ''
(cd tools/gyp; patch -Np1 -i ${../../python-modules/gyp/no-darwin-cflags.patch})
'' else null;
buildInputs = [ python which ]
++ (optional stdenv.isLinux utillinux)