mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
* Use the pure stdenv on x86_64.
svn path=/nixpkgs/trunk/; revision=6849
This commit is contained in:
parent
4f03dec496
commit
b831b236ba
1 changed files with 8 additions and 7 deletions
|
@ -90,11 +90,12 @@ rec {
|
|||
|
||||
# Select the appropriate stdenv for the platform `system'.
|
||||
stdenv =
|
||||
if stdenvType == "i686-linux" then stdenvLinux
|
||||
else if stdenvType == "i686-freebsd" then stdenvFreeBSD
|
||||
else if stdenvType == "i686-cygwin" then stdenvCygwin
|
||||
else if stdenvType == "i686-mingw" then stdenvMinGW
|
||||
else if stdenvType == "powerpc-darwin" then stdenvDarwin
|
||||
else if stdenvType == "i686-darwin" then stdenvNix
|
||||
else stdenvNative;
|
||||
if stdenvType == "i686-linux" then stdenvLinux else
|
||||
if stdenvType == "x86_64-linux" then stdenvLinux else
|
||||
if stdenvType == "i686-freebsd" then stdenvFreeBSD else
|
||||
if stdenvType == "i686-cygwin" then stdenvCygwin else
|
||||
if stdenvType == "i686-mingw" then stdenvMinGW else
|
||||
if stdenvType == "powerpc-darwin" then stdenvDarwin else
|
||||
if stdenvType == "i686-darwin" then stdenvNix else
|
||||
stdenvNative;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue