From 92844240c27fd779ea3b308729afbb310c119131 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Mon, 24 Apr 2017 15:18:15 +0200 Subject: [PATCH] halvm: set proper meta.platforms 64-bit Linux is the only platform that has Xen in Nixpkgs. --- pkgs/development/compilers/halvm/2.4.0.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/development/compilers/halvm/2.4.0.nix b/pkgs/development/compilers/halvm/2.4.0.nix index 06627ce0862..5b241b31ee3 100644 --- a/pkgs/development/compilers/halvm/2.4.0.nix +++ b/pkgs/development/compilers/halvm/2.4.0.nix @@ -46,7 +46,8 @@ stdenv.mkDerivation rec { meta = { homepage = "http://github.com/GaloisInc/HaLVM"; 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 ]; - inherit (bootPkgs.ghc.meta) license platforms; + inherit (bootPkgs.ghc.meta) license; }; }