Making the virtualbox-guest module be evaluated only in i686 and x86_64.

On mips, an assertion in the nixpkgs virtualbox was failing.


svn path=/nixos/trunk/; revision=34464
This commit is contained in:
Lluís Batlle i Rossell 2012-06-11 17:31:03 +00:00
parent 51b5da4023
commit a257bf78cb

View File

@ -11,6 +11,7 @@ let
in
if (pkgs.stdenv.isi686 || pkgs.stdenv.isx86_64) then
{
###### interface
@ -76,3 +77,4 @@ in
};
}
else {}