summary refs log tree commit diff
path: root/pkgs/stdenv/generic/default.nix
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2012-11-29 14:10:49 +0100
committerEelco Dolstra <eelco.dolstra@logicblox.com>2012-11-29 14:10:49 +0100
commit72684fb42fc2a5da68746098eb85fcc4935e9b3d (patch)
treeeabf0c6bcd4356e8f670412fd140d0ef619b0437 /pkgs/stdenv/generic/default.nix
parent4b48d05c58bb97c016c05f4014ac3c32f7f2d548 (diff)
downloadnixpkgs-72684fb42fc2a5da68746098eb85fcc4935e9b3d.tar
nixpkgs-72684fb42fc2a5da68746098eb85fcc4935e9b3d.tar.gz
nixpkgs-72684fb42fc2a5da68746098eb85fcc4935e9b3d.tar.bz2
nixpkgs-72684fb42fc2a5da68746098eb85fcc4935e9b3d.tar.lz
nixpkgs-72684fb42fc2a5da68746098eb85fcc4935e9b3d.tar.xz
nixpkgs-72684fb42fc2a5da68746098eb85fcc4935e9b3d.tar.zst
nixpkgs-72684fb42fc2a5da68746098eb85fcc4935e9b3d.zip
Remove support for the obsolete powerpc-darwin and i686-darwin platforms
Diffstat (limited to 'pkgs/stdenv/generic/default.nix')
-rw-r--r--pkgs/stdenv/generic/default.nix5
1 files changed, 1 insertions, 4 deletions
diff --git a/pkgs/stdenv/generic/default.nix b/pkgs/stdenv/generic/default.nix
index 9197ff8314b..bed6ad2f90e 100644
--- a/pkgs/stdenv/generic/default.nix
+++ b/pkgs/stdenv/generic/default.nix
@@ -82,9 +82,7 @@ let
           // (attrs.passthru or {});
 
         # Utility flags to test the type of platform.
-        isDarwin = result.system == "i686-darwin"
-               || result.system == "powerpc-darwin"
-               || result.system == "x86_64-darwin";
+        isDarwin = result.system == "x86_64-darwin";
         isLinux = result.system == "i686-linux"
                || result.system == "x86_64-linux"
                || result.system == "powerpc-linux"
@@ -108,7 +106,6 @@ let
                || result.system == "x86_64-openbsd";
         isi686 = result.system == "i686-linux"
                || result.system == "i686-gnu"
-               || result.system == "i686-darwin"
                || result.system == "i686-freebsd"
                || result.system == "i686-openbsd"
                || result.system == "i386-sunos";