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

Fixes https://github.com/NixOS/nixpkgs/issues/204851

authored by

Naïm Favier and committed by
GitHub
7607aa2f e676b1f9

+5 -1
+5 -1
pkgs/games/dwarf-fortress/wrapper/default.nix
··· 56 56 57 57 settings_ = lib.recursiveUpdate { 58 58 init = { 59 - PRINT_MODE = if enableTextMode then "TEXT" else if enableTWBT then "TWBT" else null; 59 + PRINT_MODE = 60 + if enableTextMode then "TEXT" 61 + else if enableTWBT then "TWBT" 62 + else if stdenv.hostPlatform.isDarwin then "STANDARD" # https://www.bay12games.com/dwarves/mantisbt/view.php?id=11680 63 + else null; 60 64 INTRO = enableIntro; 61 65 TRUETYPE = enableTruetype; 62 66 FPS = enableFPS;