2018-06-06 21:05:02 +00:00
|
|
|
{ pkgs, stdenv, stdenvNoCC, gccStdenv }:
|
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
|
|
|
|
2016-01-19 21:44:33 +00:00
|
|
|
self = rec {
|
2016-08-13 00:10:46 +00:00
|
|
|
dwarf-fortress-original = callPackage ./game.nix { };
|
2015-09-26 23:13:06 +00:00
|
|
|
|
2016-11-23 15:04:57 +00:00
|
|
|
dfhack = callPackage ./dfhack {
|
|
|
|
inherit (pkgs.perlPackages) XMLLibXML XMLLibXSLT;
|
2018-06-06 21:05:02 +00:00
|
|
|
stdenv = gccStdenv;
|
2014-11-07 16:06:56 +00:00
|
|
|
};
|
2015-09-26 23:13:06 +00:00
|
|
|
|
2017-06-19 00:48:02 +00:00
|
|
|
soundSense = callPackage ./soundsense.nix { };
|
|
|
|
|
2018-05-11 04:55:06 +00:00
|
|
|
# unfuck is linux-only right now, we will just use it there
|
|
|
|
dwarf-fortress-unfuck = if stdenv.isLinux then callPackage ./unfuck.nix { }
|
|
|
|
else null;
|
2014-11-07 16:06:56 +00:00
|
|
|
|
2016-01-19 21:44:33 +00:00
|
|
|
dwarf-fortress = callPackage ./wrapper {
|
|
|
|
themes = {
|
|
|
|
"phoebus" = phoebus-theme;
|
2016-02-10 13:54:55 +00:00
|
|
|
"cla" = cla-theme;
|
2016-01-19 21:44:33 +00:00
|
|
|
};
|
|
|
|
};
|
2016-01-12 18:17:46 +00:00
|
|
|
|
2016-03-03 12:02:21 +00:00
|
|
|
dwarf-therapist-original = pkgs.qt5.callPackage ./dwarf-therapist {
|
2016-01-12 18:17:46 +00:00
|
|
|
texlive = pkgs.texlive.combine {
|
|
|
|
inherit (pkgs.texlive) scheme-basic float caption wrapfig adjmulticol sidecap preprint enumitem;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
dwarf-therapist = callPackage ./dwarf-therapist/wrapper.nix { };
|
2016-01-19 21:43:52 +00:00
|
|
|
|
2018-06-06 21:05:02 +00:00
|
|
|
themes = callPackage ./themes {
|
|
|
|
stdenv = stdenvNoCC;
|
|
|
|
};
|
|
|
|
|
|
|
|
phoebus-theme = themes.phoebus;
|
2016-02-10 13:54:55 +00:00
|
|
|
|
2018-06-06 21:05:02 +00:00
|
|
|
cla-theme = themes.cla;
|
2010-10-30 06:00:44 +00:00
|
|
|
};
|
2016-01-12 17:56:59 +00:00
|
|
|
|
|
|
|
in self
|