Avoid top-level with ...; in pkgs/games/dwarf-fortress/lazy-pack.nix

This commit is contained in:
Philip Taron 2024-03-14 11:36:16 -07:00 committed by Valentin Gagarin
parent bb2713d671
commit 1ed3d42bc1

View file

@ -25,9 +25,16 @@
, enableSound ? true
}:
with lib;
let
inherit (lib)
getAttr
hasAttr
licenses
maintainers
optional
platforms
;
dfGame = versionToName dfVersion;
dwarf-fortress =
if hasAttr dfGame df-games
@ -43,10 +50,10 @@ buildEnv {
enableIntro enableTruetype enableFPS enableTextMode enableSound;
})
]
++ lib.optional enableDwarfTherapist dwarf-therapist
++ lib.optional enableLegendsBrowser legends-browser;
++ optional enableDwarfTherapist dwarf-therapist
++ optional enableLegendsBrowser legends-browser;
meta = with lib; {
meta = {
description = "An opinionated wrapper for Dwarf Fortress";
maintainers = with maintainers; [ Baughn numinit ];
license = licenses.mit;