dolphin-emu-beta: mark as compatible with aarch64

While aarch64-darwin is officially supported by upstream,
Darwin build is still broken.
This commit is contained in:
Konrad Borowski 2022-05-24 10:22:58 +02:00
parent 20d85c13aa
commit c888cdbcca

View file

@ -84,6 +84,6 @@ stdenv.mkDerivation rec {
# x86_32 is an unsupported platform.
# Enable generic build if you really want a JIT-less binary.
broken = stdenv.isDarwin;
platforms = [ "x86_64-linux" "x86_64-darwin" ];
platforms = [ "x86_64-linux" "x86_64-darwin" "aarch64-linux" "aarch64-darwin" ];
};
}