Merge pull request #174251 from xfix/dolphin-emu-beta-aarch64

dolphin-emu-beta: mark as compatible with aarch64
This commit is contained in:
Rick van Schijndel 2022-05-27 16:23:06 +02:00 committed by GitHub
commit d8b2ee9168
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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" ];
};
}