2018-07-21 01:44:44 +01:00
|
|
|
{ pkgs, stdenv, stdenvNoCC, gccStdenv, lib, recurseIntoAttrs }:
|
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,
|
|
|
|
# for instance with `environment.systempackages = [ pkgs.dwarf-fortress.dwarf-fortress-full ];`.
|
|
|
|
#
|
|
|
|
# You can adjust its settings by using override, or compile your own package by
|
|
|
|
# using the other packages here. Take a look at lazy-pack.nix to get an idea of
|
|
|
|
# how.
|
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
#
|
|
|
|
# Although both dfhack and dwarf therapist are included in the lazy pack, you
|
|
|
|
# can only use one at a time. DFHack does have therapist-like features, so this
|
|
|
|
# may or may not be a problem.
|
2014-11-07 16:06:56 +00:00
|
|
|
|
|
|
|
let
|
2016-01-12 17:56:59 +00:00
|
|
|
callPackage = pkgs.newScope self;
|
2014-11-07 16:06:56 +00:00
|
|
|
|
2018-07-08 20:44:29 +01:00
|
|
|
df-games = lib.listToAttrs (map (dfVersion: {
|
|
|
|
name = "dwarf-fortress_${lib.replaceStrings ["."] ["_"] dfVersion}";
|
|
|
|
value = callPackage ./wrapper {
|
|
|
|
inherit (self) themes;
|
|
|
|
dwarf-fortress = callPackage ./game.nix { inherit dfVersion; };
|
2018-07-05 22:21:24 +01:00
|
|
|
};
|
2018-07-08 20:44:29 +01:00
|
|
|
}) (lib.attrNames self.df-hashes));
|
|
|
|
|
|
|
|
self = rec {
|
|
|
|
df-hashes = builtins.fromJSON (builtins.readFile ./game.json);
|
2018-08-16 22:58:22 +01:00
|
|
|
dwarf-fortress = df-games.dwarf-fortress_0_44_12;
|
2015-09-27 00:13:06 +01:00
|
|
|
|
2018-07-05 20:09:03 +01:00
|
|
|
dwarf-fortress-full = callPackage ./lazy-pack.nix { };
|
|
|
|
|
2016-11-23 15:04:57 +00:00
|
|
|
dfhack = callPackage ./dfhack {
|
|
|
|
inherit (pkgs.perlPackages) XMLLibXML XMLLibXSLT;
|
2018-06-06 22:05:02 +01:00
|
|
|
stdenv = gccStdenv;
|
2014-11-07 16:06:56 +00:00
|
|
|
};
|
2015-09-27 00:13:06 +01:00
|
|
|
|
2017-06-19 01:48:02 +01:00
|
|
|
soundSense = callPackage ./soundsense.nix { };
|
|
|
|
|
2018-07-05 20:09:03 +01:00
|
|
|
# unfuck is linux-only right now, we will only use it there.
|
2018-05-11 05:55:06 +01:00
|
|
|
dwarf-fortress-unfuck = if stdenv.isLinux then callPackage ./unfuck.nix { }
|
2018-07-08 20:44:29 +01:00
|
|
|
else null;
|
|
|
|
|
|
|
|
dwarf-therapist = callPackage ./dwarf-therapist/wrapper.nix {
|
|
|
|
inherit (dwarf-fortress) dwarf-fortress;
|
|
|
|
dwarf-therapist = pkgs.qt5.callPackage ./dwarf-therapist {
|
|
|
|
texlive = pkgs.texlive.combine {
|
|
|
|
inherit (pkgs.texlive) scheme-basic float caption wrapfig adjmulticol sidecap preprint enumitem;
|
|
|
|
};
|
2016-01-12 18:17:46 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2018-07-04 21:04:19 +01:00
|
|
|
legends-browser = callPackage ./legends-browser {};
|
|
|
|
|
2018-07-05 16:36:27 +01:00
|
|
|
twbt = callPackage ./twbt {};
|
2018-07-21 01:44:44 +01:00
|
|
|
themes = recurseIntoAttrs (callPackage ./themes { });
|
2018-06-06 22:05:02 +01:00
|
|
|
|
2018-07-08 20:44:29 +01:00
|
|
|
# aliases
|
2018-06-06 22:05:02 +01:00
|
|
|
phoebus-theme = themes.phoebus;
|
|
|
|
cla-theme = themes.cla;
|
2018-07-08 20:44:29 +01:00
|
|
|
dwarf-fortress-original = dwarf-fortress.dwarf-fortress;
|
2010-10-30 07:00:44 +01:00
|
|
|
};
|
2016-01-12 17:56:59 +00:00
|
|
|
|
2018-07-08 20:44:29 +01:00
|
|
|
in self // df-games
|