Merge pull request #235879 from tomfitzhenry/minetest-server-aarch64

mindustry-server: enable on aarch64-linux
This commit is contained in:
Weijia Wang 2023-08-14 00:07:21 +02:00 committed by GitHub
commit 07c07dbbdc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -243,7 +243,7 @@ stdenv.mkDerivation rec {
];
license = licenses.gpl3Plus;
maintainers = with maintainers; [ chkno fgaz thekostins ];
platforms = platforms.x86_64;
platforms = if enableClient then platforms.x86_64 else platforms.linux;
# Hash mismatch on darwin:
# https://github.com/NixOS/nixpkgs/pull/105590#issuecomment-737120293
broken = stdenv.isDarwin;