about summary refs log tree commit diff
path: root/pkgs/games/dwarf-fortress/lazy-pack.nix
blob: c94a46f04d9ef13d70f2e0c922c95f38b8567364 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{ stdenvNoCC
, lib
, buildEnv
, df-games
, themes
, latestVersion
, versionToName
, dfVersion ? latestVersion
  # This package should, at any given time, provide an opinionated "optimal"
  # DF experience. It's the equivalent of the Lazy Newbie Pack, that is, and
  # should contain every utility available unless you disable them.
, enableDFHack ? stdenvNoCC.isLinux
, enableTWBT ? enableDFHack
, enableSoundSense ? true
, enableStoneSense ? true
, enableDwarfTherapist ? true
, enableLegendsBrowser ? true
, legends-browser
, theme ? themes.phoebus
  # General config options:
, enableIntro ? true
, enableTruetype ? null # defaults to 24, see init.txt
, enableFPS ? false
, enableTextMode ? false
, enableSound ? true
}:

let
  inherit (lib)
    getAttr
    hasAttr
    licenses
    maintainers
    optional
    platforms
    ;

  dfGame = versionToName dfVersion;
  dwarf-fortress =
    if hasAttr dfGame df-games
    then getAttr dfGame df-games
    else throw "Unknown Dwarf Fortress version: ${dfVersion}";
  dwarf-therapist = dwarf-fortress.dwarf-therapist;

  mainProgram = if enableDFHack then "dfhack" else "dwarf-fortress";
in
buildEnv {
  name = "dwarf-fortress-full";
  paths = [
    (dwarf-fortress.override {
      inherit enableDFHack enableTWBT enableSoundSense enableStoneSense theme
        enableIntro enableTruetype enableFPS enableTextMode enableSound;
    })
  ]
  ++ optional enableDwarfTherapist dwarf-therapist
  ++ optional enableLegendsBrowser legends-browser;

  meta = {
    inherit mainProgram;
    description = "Opinionated wrapper for Dwarf Fortress";
    maintainers = with maintainers; [ Baughn numinit ];
    license = licenses.mit;
    platforms = platforms.all;
    homepage = "https://github.com/NixOS/nixpkgs/";
  };
}