From bd42bcd2404245f926089069a07268e594ff50af Mon Sep 17 00:00:00 2001 From: Renaud Date: Sun, 20 Oct 2019 16:49:18 +0200 Subject: [PATCH] libwhereami: disable on ARM Hydra still tries to build it on aarch64 even though this lib is incompatible with ARMv7 / ARMv8 --- pkgs/development/libraries/libwhereami/default.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pkgs/development/libraries/libwhereami/default.nix b/pkgs/development/libraries/libwhereami/default.nix index 4014dc8dd769..a6715bdc18df 100644 --- a/pkgs/development/libraries/libwhereami/default.nix +++ b/pkgs/development/libraries/libwhereami/default.nix @@ -24,8 +24,7 @@ stdenv.mkDerivation rec { description = "Library to report hypervisor information from inside a VM"; license = licenses.asl20; maintainers = [ maintainers.womfoo ]; - platforms = platforms.linux; - badPlatforms = platforms.arm; + platforms = with platforms; [ "i686-linux" "x86_64-linux" ]; # fails on aarch64 }; }