summary refs log tree commit diff
path: root/pkgs/development/web/nodejs
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2012-04-23 15:47:31 +0000
committerLudovic Courtès <ludo@gnu.org>2012-04-23 15:47:31 +0000
commit04600bbec1d0902b6aeec4528718f6fc7c3dc040 (patch)
tree5ae660e72691c5e49d1784e725d65513aab39237 /pkgs/development/web/nodejs
parent0a9d954bc6aa8012a1ac8d0f9dafb26a2a3ce1fb (diff)
downloadnixpkgs-04600bbec1d0902b6aeec4528718f6fc7c3dc040.tar
nixpkgs-04600bbec1d0902b6aeec4528718f6fc7c3dc040.tar.gz
nixpkgs-04600bbec1d0902b6aeec4528718f6fc7c3dc040.tar.bz2
nixpkgs-04600bbec1d0902b6aeec4528718f6fc7c3dc040.tar.lz
nixpkgs-04600bbec1d0902b6aeec4528718f6fc7c3dc040.tar.xz
nixpkgs-04600bbec1d0902b6aeec4528718f6fc7c3dc040.tar.zst
nixpkgs-04600bbec1d0902b6aeec4528718f6fc7c3dc040.zip
Darwin: Add `mig', `lipo', etc. to `stdenvNative'.
Consequently, remove `darwinLipoUtility', `darwinArchUtility', etc.

svn path=/nixpkgs/trunk/; revision=33893
Diffstat (limited to 'pkgs/development/web/nodejs')
-rw-r--r--pkgs/development/web/nodejs/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/web/nodejs/default.nix b/pkgs/development/web/nodejs/default.nix
index e1526c49f3c..36b9cdf28f2 100644
--- a/pkgs/development/web/nodejs/default.nix
+++ b/pkgs/development/web/nodejs/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, openssl, python, zlib, v8, darwinInstallNameToolUtility }:
+{ stdenv, fetchurl, openssl, python, zlib, v8 }:
 
 stdenv.mkDerivation rec {
   version = "0.6.14";
@@ -27,7 +27,7 @@ stdenv.mkDerivation rec {
     install_name_tool -change libv8.dylib ${v8}/lib/libv8.dylib $out/bin/node
   '';
 
-  buildInputs = [ python openssl v8 zlib ] ++ stdenv.lib.optional stdenv.isDarwin darwinInstallNameToolUtility;
+  buildInputs = [ python openssl v8 zlib ];
 
   meta = with stdenv.lib; {
     description = "Event-driven I/O framework for the V8 JavaScript engine";