2018-07-21 00:44:44 +00:00
|
|
|
{ pkgs, stdenv, stdenvNoCC, gccStdenv, lib, recurseIntoAttrs }:
|
2018-07-05 19:09:03 +00: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 08:42:52 +00:00
|
|
|
# for instance with:
|
|
|
|
# `environment.systemPackages = [ pkgs.dwarf-fortress-packages.dwarf-fortress-full ];`
|
2018-07-05 19:09:03 +00:00
|
|
|
#
|
|
|
|
# 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 19:44:29 +00:00
|
|
|
df-games = lib.listToAttrs (map (dfVersion: {
|
2018-07-12 08:42:52 +00:00
|
|
|
name = "dwarf-fortress_${lib.replaceStrings ["."] ["_"] 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;
|
|
|
|
};
|
|
|
|
|
|
|
|
# unfuck is linux-only right now, we will only use it there.
|
|
|
|
dwarf-fortress-unfuck = if stdenv.isLinux then callPackage ./unfuck.nix { inherit dfVersion; }
|
|
|
|
else null;
|
|
|
|
|
|
|
|
twbt = callPackage ./twbt { inherit dfVersion; };
|
|
|
|
|
|
|
|
dfhack = callPackage ./dfhack {
|
|
|
|
inherit (pkgs.perlPackages) XMLLibXML XMLLibXSLT;
|
|
|
|
inherit dfVersion;
|
|
|
|
inherit twbt;
|
|
|
|
stdenv = gccStdenv;
|
|
|
|
};
|
|
|
|
in
|
|
|
|
callPackage ./wrapper {
|
|
|
|
inherit (self) themes;
|
|
|
|
|
|
|
|
dwarf-fortress = dwarf-fortress;
|
|
|
|
dwarf-fortress-unfuck = dwarf-fortress-unfuck;
|
|
|
|
twbt = twbt;
|
|
|
|
dfhack = dfhack;
|
|
|
|
};
|
2018-07-08 19:44:29 +00:00
|
|
|
}) (lib.attrNames self.df-hashes));
|
|
|
|
|
|
|
|
self = rec {
|
|
|
|
df-hashes = builtins.fromJSON (builtins.readFile ./game.json);
|
2018-08-16 21:58:22 +00:00
|
|
|
dwarf-fortress = df-games.dwarf-fortress_0_44_12;
|
2015-09-26 23:13:06 +00:00
|
|
|
|
2018-07-05 19:09:03 +00:00
|
|
|
dwarf-fortress-full = callPackage ./lazy-pack.nix { };
|
|
|
|
|
2017-06-19 00:48:02 +00:00
|
|
|
soundSense = callPackage ./soundsense.nix { };
|
|
|
|
|
2018-07-08 19:44:29 +00:00
|
|
|
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 20:04:19 +00:00
|
|
|
legends-browser = callPackage ./legends-browser {};
|
|
|
|
|
2018-07-12 08:42:52 +00:00
|
|
|
themes = recurseIntoAttrs (callPackage ./themes {
|
|
|
|
stdenv = stdenvNoCC;
|
|
|
|
});
|
2018-06-06 21:05:02 +00:00
|
|
|
|
2018-07-08 19:44:29 +00:00
|
|
|
# aliases
|
2018-06-06 21:05:02 +00:00
|
|
|
phoebus-theme = themes.phoebus;
|
|
|
|
cla-theme = themes.cla;
|
2018-07-08 19:44:29 +00:00
|
|
|
dwarf-fortress-original = dwarf-fortress.dwarf-fortress;
|
2010-10-30 06:00:44 +00:00
|
|
|
};
|
2016-01-12 17:56:59 +00:00
|
|
|
|
2018-07-08 19:44:29 +00:00
|
|
|
in self // df-games
|