From 93ad4bae790f77239a6e6344eeb506af3aceb97d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Milan=20P=C3=A4ssler?= Date: Fri, 16 Apr 2021 17:49:43 +0200 Subject: [PATCH] mindustry: mark as broken The Mindustry source code makes heavy use of internal Java APIs that were deprecated in Java 6 and removed in Java 16. It also makes use of features that require Java >=14. The author is not ready to provide compatibility with any maintained Java version at this time. --- pkgs/games/mindustry/default.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/games/mindustry/default.nix b/pkgs/games/mindustry/default.nix index af8ff5f24f9..7e1a0cba176 100644 --- a/pkgs/games/mindustry/default.nix +++ b/pkgs/games/mindustry/default.nix @@ -191,6 +191,8 @@ stdenv.mkDerivation rec { platforms = platforms.x86_64; # Hash mismatch on darwin: # https://github.com/NixOS/nixpkgs/pull/105590#issuecomment-737120293 - broken = stdenv.isDarwin; + broken = stdenv.isDarwin + # does not work with any maintained java version (https://github.com/Anuken/Mindustry/issues/5114) + || true; }; }