2021-06-29 03:42:37 +01:00
|
|
|
{ stdenv, stdenvNoCC, gccStdenv, lib, recurseIntoAttrs, libsForQt5, newScope, texlive, perlPackages, jdk8, jre8 }:
|
2018-07-05 20:09:03 +01:00
|
|
|
|
|
|
|
# To whomever it may concern:
|
|
|
|
#
|
|
|
|
# This directory menaces with spikes of Nix code. It is terrifying.
|
|
|
|
#
|
|
|
|
# If this is your first time here, you should probably install the dwarf-fortress-full package,
|
2018-07-12 09:42:52 +01:00
|
|
|
# for instance with:
|
2018-07-15 06:38:30 +01:00
|
|
|
#
|
|
|
|
# environment.systemPackages = [ pkgs.dwarf-fortress-packages.dwarf-fortress-full ];
|
2018-07-05 20:09:03 +01:00
|
|
|
#
|
|
|
|
# You can adjust its settings by using override, or compile your own package by
|
2018-07-15 06:38:30 +01:00
|
|
|
# using the other packages here.
|
|
|
|
#
|
|
|
|
# For example, you can enable the FPS indicator, disable the intro, pick a
|
|
|
|
# theme other than phoebus (the default for dwarf-fortress-full), _and_ use
|
|
|
|
# an older version with something like:
|
|
|
|
#
|
|
|
|
# environment.systemPackages = [
|
|
|
|
# (pkgs.dwarf-fortress-packages.dwarf-fortress-full.override {
|
|
|
|
# dfVersion = "0.44.11";
|
|
|
|
# theme = "cla";
|
|
|
|
# enableIntro = false;
|
|
|
|
# enableFPS = true;
|
|
|
|
# })
|
|
|
|
# ]
|
|
|
|
#
|
|
|
|
# Take a look at lazy-pack.nix to see all the other options.
|
2018-07-05 20:09:03 +01:00
|
|
|
#
|
|
|
|
# You will find the configuration files in ~/.local/share/df_linux/data/init. If
|
|
|
|
# you un-symlink them and edit, then the scripts will avoid overwriting your
|
|
|
|
# changes on later launches, but consider extending the wrapper with your
|
|
|
|
# desired options instead.
|
2018-07-15 06:38:30 +01:00
|
|
|
|
|
|
|
with lib;
|
2014-11-07 16:06:56 +00:00
|
|
|
|
|
|
|
let
|
2021-06-29 03:42:37 +01:00
|
|
|
callPackage = newScope self;
|
2014-11-07 16:06:56 +00:00
|
|
|
|
2018-07-15 06:38:30 +01:00
|
|
|
# The latest Dwarf Fortress version. Maintainers: when a new version comes
|
|
|
|
# out, ensure that (unfuck|dfhack|twbt) are all up to date before changing
|
|
|
|
# this.
|
2021-02-28 22:36:24 +00:00
|
|
|
latestVersion = "0.47.05";
|
2018-07-15 06:38:30 +01:00
|
|
|
|
|
|
|
# Converts a version to a package name.
|
|
|
|
versionToName = version: "dwarf-fortress_${lib.replaceStrings ["."] ["_"] version}";
|
|
|
|
|
2021-06-29 03:42:37 +01:00
|
|
|
dwarf-therapist-original = libsForQt5.callPackage ./dwarf-therapist {
|
|
|
|
texlive = texlive.combine {
|
|
|
|
inherit (texlive) scheme-basic float caption wrapfig adjmulticol sidecap preprint enumitem;
|
2019-06-10 16:26:09 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2018-07-15 06:38:30 +01:00
|
|
|
# A map of names to each Dwarf Fortress package we know about.
|
2021-06-29 03:42:37 +01:00
|
|
|
df-games = lib.listToAttrs (map
|
|
|
|
(dfVersion: {
|
|
|
|
name = versionToName dfVersion;
|
|
|
|
value =
|
|
|
|
let
|
|
|
|
# I can't believe this syntax works. Spikes of Nix code indeed...
|
|
|
|
dwarf-fortress = callPackage ./game.nix {
|
|
|
|
inherit dfVersion;
|
|
|
|
inherit dwarf-fortress-unfuck;
|
|
|
|
};
|
|
|
|
|
2022-10-27 17:55:04 +01:00
|
|
|
dwarf-fortress-unfuck = callPackage ./unfuck.nix { inherit dfVersion; };
|
2021-06-29 03:42:37 +01:00
|
|
|
|
|
|
|
twbt = callPackage ./twbt { inherit dfVersion; };
|
|
|
|
|
|
|
|
dfhack = callPackage ./dfhack {
|
|
|
|
inherit (perlPackages) XMLLibXML XMLLibXSLT;
|
2022-11-15 17:41:36 +00:00
|
|
|
inherit dfVersion;
|
2021-06-29 03:42:37 +01:00
|
|
|
stdenv = gccStdenv;
|
|
|
|
};
|
|
|
|
|
|
|
|
dwarf-therapist = libsForQt5.callPackage ./dwarf-therapist/wrapper.nix {
|
|
|
|
inherit dwarf-fortress;
|
|
|
|
dwarf-therapist = dwarf-therapist-original;
|
|
|
|
};
|
|
|
|
in
|
|
|
|
callPackage ./wrapper {
|
|
|
|
inherit (self) themes;
|
2022-10-27 17:57:12 +01:00
|
|
|
inherit dwarf-fortress twbt dfhack dwarf-therapist;
|
2021-06-29 03:42:37 +01:00
|
|
|
|
|
|
|
jdk = jdk8; # TODO: remove override https://github.com/NixOS/nixpkgs/pull/89731
|
2018-07-12 09:42:52 +01:00
|
|
|
};
|
2021-06-29 03:42:37 +01:00
|
|
|
})
|
|
|
|
(lib.attrNames self.df-hashes));
|
2018-07-08 20:44:29 +01:00
|
|
|
|
|
|
|
self = rec {
|
2021-11-03 12:43:23 +00:00
|
|
|
df-hashes = lib.importJSON ./game.json;
|
2018-07-15 07:41:27 +01:00
|
|
|
|
|
|
|
# Aliases for the latest Dwarf Fortress and the selected Therapist install
|
2018-07-15 06:38:30 +01:00
|
|
|
dwarf-fortress = getAttr (versionToName latestVersion) df-games;
|
2019-06-10 16:26:09 +01:00
|
|
|
inherit dwarf-therapist-original;
|
2018-07-15 07:41:27 +01:00
|
|
|
dwarf-therapist = dwarf-fortress.dwarf-therapist;
|
|
|
|
dwarf-fortress-original = dwarf-fortress.dwarf-fortress;
|
2015-09-27 00:13:06 +01:00
|
|
|
|
2018-07-15 06:38:30 +01:00
|
|
|
dwarf-fortress-full = callPackage ./lazy-pack.nix {
|
2018-07-15 07:41:27 +01:00
|
|
|
inherit df-games versionToName latestVersion;
|
2018-07-15 06:38:30 +01:00
|
|
|
};
|
2020-02-13 23:35:23 +00:00
|
|
|
|
2017-06-19 01:48:02 +01:00
|
|
|
soundSense = callPackage ./soundsense.nix { };
|
|
|
|
|
2020-09-19 12:52:36 +01:00
|
|
|
legends-browser = callPackage ./legends-browser {
|
2021-06-29 03:42:37 +01:00
|
|
|
jre = jre8; # TODO: remove override https://github.com/NixOS/nixpkgs/pull/89731
|
2020-09-19 12:52:36 +01:00
|
|
|
};
|
2018-07-04 21:04:19 +01:00
|
|
|
|
2018-07-12 09:42:52 +01:00
|
|
|
themes = recurseIntoAttrs (callPackage ./themes {
|
|
|
|
stdenv = stdenvNoCC;
|
|
|
|
});
|
2018-06-06 22:05:02 +01:00
|
|
|
|
2018-07-15 07:41:27 +01:00
|
|
|
# Theme aliases
|
2018-06-06 22:05:02 +01:00
|
|
|
phoebus-theme = themes.phoebus;
|
|
|
|
cla-theme = themes.cla;
|
2010-10-30 07:00:44 +01:00
|
|
|
};
|
2016-01-12 17:56:59 +00:00
|
|
|
|
2021-06-29 03:42:37 +01:00
|
|
|
in
|
|
|
|
self // df-games
|