stdenv: Add `isx86_64'.

svn path=/nixpkgs/trunk/; revision=21292
This commit is contained in:
Ludovic Courtès 2010-04-24 11:08:24 +00:00
parent 831196dad1
commit 5e0a05e4dc

View file

@ -100,6 +100,10 @@ let
|| result.system == "i686-freebsd"
|| result.system == "i686-openbsd"
|| result.system == "i386-sunos";
isx86_64 = result.system == "x86_64-linux"
|| result.system == "x86_64-darwin"
|| result.system == "x86_64-freebsd"
|| result.system == "x86_64-openbsd";
is64bit = result.system == "x86_64-linux"
|| result.system == "x86_64-darwin";