summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorDan Peebles <pumpkin@me.com>2016-01-19 22:28:42 -0500
committerDan Peebles <pumpkin@me.com>2016-01-19 22:28:42 -0500
commit5cb1e43fd6eb7f87c9b17e9dc6d1a92ae7c360a4 (patch)
tree12bee0688de308e54bc09de07b2b52f5b5e4dd2a /pkgs/development
parent9d9cb9f087c36f711f329fe02ddc435a964a94d7 (diff)
downloadnixpkgs-5cb1e43fd6eb7f87c9b17e9dc6d1a92ae7c360a4.tar
nixpkgs-5cb1e43fd6eb7f87c9b17e9dc6d1a92ae7c360a4.tar.gz
nixpkgs-5cb1e43fd6eb7f87c9b17e9dc6d1a92ae7c360a4.tar.bz2
nixpkgs-5cb1e43fd6eb7f87c9b17e9dc6d1a92ae7c360a4.tar.lz
nixpkgs-5cb1e43fd6eb7f87c9b17e9dc6d1a92ae7c360a4.tar.xz
nixpkgs-5cb1e43fd6eb7f87c9b17e9dc6d1a92ae7c360a4.tar.zst
nixpkgs-5cb1e43fd6eb7f87c9b17e9dc6d1a92ae7c360a4.zip
nodejs-5: fix on darwin
Turns out the darwin-flavored patches aren't needed anymore.

Fixes #12305
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/web/nodejs/v5.nix3
1 files changed, 0 insertions, 3 deletions
diff --git a/pkgs/development/web/nodejs/v5.nix b/pkgs/development/web/nodejs/v5.nix
index f9e9ee12edc..403abef23df 100644
--- a/pkgs/development/web/nodejs/v5.nix
+++ b/pkgs/development/web/nodejs/v5.nix
@@ -38,11 +38,8 @@ in stdenv.mkDerivation {
   dontDisableStatic = true;
   prePatch = ''
     patchShebangs .
-    sed -i 's/raise.*No Xcode or CLT version detected.*/version = "7.0.0"/' tools/gyp/pylib/gyp/xcode_emulation.py
   '';
 
-  patches = stdenv.lib.optionals stdenv.isDarwin [ ./no-xcode.patch ./pkg-libpath.patch ];
-
   buildInputs = [ python which zlib libuv openssl python ]
     ++ optionals stdenv.isLinux [ utillinux http-parser ]
     ++ optionals stdenv.isDarwin [ pkgconfig openssl libtool ];