halvm: set proper meta.platforms

64-bit Linux is the only platform that has Xen in Nixpkgs.
This commit is contained in:
Peter Simons 2017-04-24 15:18:15 +02:00
parent 9fa927f106
commit 92844240c2

View File

@ -46,7 +46,8 @@ stdenv.mkDerivation rec {
meta = { meta = {
homepage = "http://github.com/GaloisInc/HaLVM"; homepage = "http://github.com/GaloisInc/HaLVM";
description = "The Haskell Lightweight Virtual Machine (HaLVM): GHC running on Xen"; description = "The Haskell Lightweight Virtual Machine (HaLVM): GHC running on Xen";
platforms = ["x86_64-linux"]; # other platforms don't have Xen
maintainers = with stdenv.lib.maintainers; [ dmjio ]; maintainers = with stdenv.lib.maintainers; [ dmjio ];
inherit (bootPkgs.ghc.meta) license platforms; inherit (bootPkgs.ghc.meta) license;
}; };
} }