From 13c3591485b5ade6d749f6e8f235a670a8e92020 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Mon, 23 Oct 2006 17:43:03 +0000 Subject: [PATCH] * Add x86_64-linux to the isLinux attribute. svn path=/nixpkgs/trunk/; revision=6806 --- pkgs/stdenv/generic/default.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/stdenv/generic/default.nix b/pkgs/stdenv/generic/default.nix index 0d49a1dc6b22..0078b53fa22f 100644 --- a/pkgs/stdenv/generic/default.nix +++ b/pkgs/stdenv/generic/default.nix @@ -56,7 +56,9 @@ let { # Utility value: is this a Darwin system? 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 # a different setup script. (See all-packages.nix for an