mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
Fix: Build Xen only for x86_64 Linux platforms.
This commit is contained in:
parent
f3bf4505a9
commit
6ad73af7a2
1 changed files with 1 additions and 1 deletions
|
@ -199,7 +199,7 @@ stdenv.mkDerivation {
|
|||
meta = {
|
||||
homepage = http://www.xen.org/;
|
||||
description = "Xen hypervisor and management tools for Dom0";
|
||||
platforms = [ "i686-linux" "x86_64-linux" ];
|
||||
platforms = [ "x86_64-linux" ];
|
||||
maintainers = with stdenv.lib.maintainers; [ eelco tstrobel ];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue