forked from mirrors/nixpkgs
* Use the pure stdenv on x86_64.
svn path=/nixpkgs/trunk/; revision=6849
This commit is contained in:
parent
4f03dec496
commit
b831b236ba
|
@ -90,11 +90,12 @@ rec {
|
||||||
|
|
||||||
# Select the appropriate stdenv for the platform `system'.
|
# Select the appropriate stdenv for the platform `system'.
|
||||||
stdenv =
|
stdenv =
|
||||||
if stdenvType == "i686-linux" then stdenvLinux
|
if stdenvType == "i686-linux" then stdenvLinux else
|
||||||
else if stdenvType == "i686-freebsd" then stdenvFreeBSD
|
if stdenvType == "x86_64-linux" then stdenvLinux else
|
||||||
else if stdenvType == "i686-cygwin" then stdenvCygwin
|
if stdenvType == "i686-freebsd" then stdenvFreeBSD else
|
||||||
else if stdenvType == "i686-mingw" then stdenvMinGW
|
if stdenvType == "i686-cygwin" then stdenvCygwin else
|
||||||
else if stdenvType == "powerpc-darwin" then stdenvDarwin
|
if stdenvType == "i686-mingw" then stdenvMinGW else
|
||||||
else if stdenvType == "i686-darwin" then stdenvNix
|
if stdenvType == "powerpc-darwin" then stdenvDarwin else
|
||||||
else stdenvNative;
|
if stdenvType == "i686-darwin" then stdenvNix else
|
||||||
|
stdenvNative;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue