summary refs log tree commit diff
diff options
context:
space:
mode:
authorRenaud <c0bw3b@users.noreply.github.com>2019-10-20 16:49:18 +0200
committerGitHub <noreply@github.com>2019-10-20 16:49:18 +0200
commitbd42bcd2404245f926089069a07268e594ff50af (patch)
treeeb571a5f412f86d4e21ea2f4e20537f92e2a3e3d
parentec760828d9790502833e32391d7aedde2f3268cc (diff)
downloadnixpkgs-bd42bcd2404245f926089069a07268e594ff50af.tar
nixpkgs-bd42bcd2404245f926089069a07268e594ff50af.tar.gz
nixpkgs-bd42bcd2404245f926089069a07268e594ff50af.tar.bz2
nixpkgs-bd42bcd2404245f926089069a07268e594ff50af.tar.lz
nixpkgs-bd42bcd2404245f926089069a07268e594ff50af.tar.xz
nixpkgs-bd42bcd2404245f926089069a07268e594ff50af.tar.zst
nixpkgs-bd42bcd2404245f926089069a07268e594ff50af.zip
libwhereami: disable on ARM
Hydra still tries to build it on aarch64 even though
this lib is incompatible with ARMv7 / ARMv8
-rw-r--r--pkgs/development/libraries/libwhereami/default.nix3
1 files changed, 1 insertions, 2 deletions
diff --git a/pkgs/development/libraries/libwhereami/default.nix b/pkgs/development/libraries/libwhereami/default.nix
index 4014dc8dd76..a6715bdc18d 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
   };
 
 }