libwhereami: disable on ARM

Hydra still tries to build it on aarch64 even though
this lib is incompatible with ARMv7 / ARMv8
This commit is contained in:
Renaud 2019-10-20 16:49:18 +02:00 committed by GitHub
parent ec760828d9
commit bd42bcd240
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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
};
}