Merge pull request #212423 from ncfavier/dwarf-fortress-macos

Fixes https://github.com/NixOS/nixpkgs/issues/204851
This commit is contained in:
Naïm Favier 2023-01-25 11:28:57 +01:00 committed by GitHub
commit 7607aa2f27
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -56,7 +56,11 @@ let
settings_ = lib.recursiveUpdate {
init = {
PRINT_MODE = if enableTextMode then "TEXT" else if enableTWBT then "TWBT" else null;
PRINT_MODE =
if enableTextMode then "TEXT"
else if enableTWBT then "TWBT"
else if stdenv.hostPlatform.isDarwin then "STANDARD" # https://www.bay12games.com/dwarves/mantisbt/view.php?id=11680
else null;
INTRO = enableIntro;
TRUETYPE = enableTruetype;
FPS = enableFPS;