mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
* Add x86_64-linux to the isLinux attribute.
svn path=/nixpkgs/trunk/; revision=6806
This commit is contained in:
parent
ed5f6e55e8
commit
13c3591485
1 changed files with 3 additions and 1 deletions
|
@ -56,7 +56,9 @@ let {
|
||||||
|
|
||||||
# Utility value: is this a Darwin system?
|
# Utility value: is this a Darwin system?
|
||||||
isDarwin = result.system == "i686-darwin" || result.system == "powerpc-darwin";
|
isDarwin = result.system == "i686-darwin" || result.system == "powerpc-darwin";
|
||||||
isLinux = result.system == "i686-linux" || result.system == "powerpc-linux";
|
isLinux = result.system == "i686-linux"
|
||||||
|
|| result.system == "x86_64-linux"
|
||||||
|
|| result.system == "powerpc-linux";
|
||||||
|
|
||||||
# Utility function: allow stdenv to be easily regenerated with
|
# Utility function: allow stdenv to be easily regenerated with
|
||||||
# a different setup script. (See all-packages.nix for an
|
# a different setup script. (See all-packages.nix for an
|
||||||
|
|
Loading…
Reference in a new issue