From 5faf8cbfa57c7d0bdf5a953d5885036070f82b5c Mon Sep 17 00:00:00 2001 From: Francesco Gazzetta Date: Wed, 2 Dec 2020 13:52:19 +0100 Subject: [PATCH] mindustry,mindustry-server: mark as broken for darwin There is a hash mismatch when built on darwin: https://github.com/NixOS/nixpkgs/pull/105590#issuecomment-737120293 --- pkgs/games/mindustry/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/games/mindustry/default.nix b/pkgs/games/mindustry/default.nix index d87a1cadd98..db3a8ffd557 100644 --- a/pkgs/games/mindustry/default.nix +++ b/pkgs/games/mindustry/default.nix @@ -128,5 +128,8 @@ stdenv.mkDerivation rec { license = licenses.gpl3; maintainers = with maintainers; [ fgaz ]; platforms = platforms.all; + # Hash mismatch on darwin: + # https://github.com/NixOS/nixpkgs/pull/105590#issuecomment-737120293 + broken = stdenv.isDarwin; }; }