From a257bf78cb452c483f7aaff50e010e0bb4e9b5f6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Llu=C3=ADs=20Batlle=20i=20Rossell?= Date: Mon, 11 Jun 2012 17:31:03 +0000 Subject: [PATCH] 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 --- modules/virtualisation/virtualbox-guest.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/virtualisation/virtualbox-guest.nix b/modules/virtualisation/virtualbox-guest.nix index abfd6371557..d0935d9a052 100644 --- a/modules/virtualisation/virtualbox-guest.nix +++ b/modules/virtualisation/virtualbox-guest.nix @@ -11,6 +11,7 @@ let in +if (pkgs.stdenv.isi686 || pkgs.stdenv.isx86_64) then { ###### interface @@ -76,3 +77,4 @@ in }; } +else {}