Merge pull request #212423 from ncfavier/dwarf-fortress-macos
Fixes https://github.com/NixOS/nixpkgs/issues/204851
This commit is contained in:
commit
7607aa2f27
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user