summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2017-04-24 15:18:15 +0200
committerPeter Simons <simons@cryp.to>2017-04-25 16:08:43 +0200
commit92844240c27fd779ea3b308729afbb310c119131 (patch)
tree13165da9d2aab0b27898247294488d944852d723 /pkgs
parent9fa927f1066929024a64511a07484549b9a84079 (diff)
downloadnixlib-92844240c27fd779ea3b308729afbb310c119131.tar
nixlib-92844240c27fd779ea3b308729afbb310c119131.tar.gz
nixlib-92844240c27fd779ea3b308729afbb310c119131.tar.bz2
nixlib-92844240c27fd779ea3b308729afbb310c119131.tar.lz
nixlib-92844240c27fd779ea3b308729afbb310c119131.tar.xz
nixlib-92844240c27fd779ea3b308729afbb310c119131.tar.zst
nixlib-92844240c27fd779ea3b308729afbb310c119131.zip
halvm: set proper meta.platforms
64-bit Linux is the only platform that has Xen in Nixpkgs.
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/compilers/halvm/2.4.0.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/development/compilers/halvm/2.4.0.nix b/pkgs/development/compilers/halvm/2.4.0.nix
index 06627ce08625..5b241b31ee3e 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;
   };
 }