3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #6583 from ts468/xen

Fix: Build Xen only for x86_64 Linux platforms.
This commit is contained in:
lethalman 2015-02-27 11:54:35 +01:00
commit 836a5c0b59

View file

@ -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 ];
};
}