nodejs: Don't apply no-darwin-cflags

The no-darwin-cflags patch does not apply cleanly anymore, but
apparently it's also not necessary.
This commit is contained in:
Alexander Flatter 2015-07-02 11:10:24 +02:00
parent afa1f5ba22
commit 60c33c16a0

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)