From 60c33c16a0a1c3ab4f2b093c215d5f43f213fece Mon Sep 17 00:00:00 2001 From: Alexander Flatter Date: Thu, 2 Jul 2015 11:10:24 +0200 Subject: [PATCH] nodejs: Don't apply no-darwin-cflags The no-darwin-cflags patch does not apply cleanly anymore, but apparently it's also not necessary. --- pkgs/development/web/nodejs/default.nix | 3 --- 1 file changed, 3 deletions(-) diff --git a/pkgs/development/web/nodejs/default.nix b/pkgs/development/web/nodejs/default.nix index c8f2d94e40a..151033bfe24 100644 --- a/pkgs/development/web/nodejs/default.nix +++ b/pkgs/development/web/nodejs/default.nix @@ -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)