2018-06-06 14:05:02 -07:00
|
|
|
{ pkgs, stdenv, stdenvNoCC, gccStdenv }:
|
2014-11-07 08:06:56 -08:00
|
|
|
|
|
|
|
let
|
2016-01-12 09:56:59 -08:00
|
|
|
callPackage = pkgs.newScope self;
|
2014-11-07 08:06:56 -08:00
|
|
|
|
2016-01-19 13:44:33 -08:00
|
|
|
self = rec {
|
2016-08-12 17:10:46 -07:00
|
|
|
dwarf-fortress-original = callPackage ./game.nix { };
|
2015-09-26 16:13:06 -07:00
|
|
|
|
2016-11-23 07:04:57 -08:00
|
|
|
dfhack = callPackage ./dfhack {
|
|
|
|
inherit (pkgs.perlPackages) XMLLibXML XMLLibXSLT;
|
2018-06-06 14:05:02 -07:00
|
|
|
stdenv = gccStdenv;
|
2014-11-07 08:06:56 -08:00
|
|
|
};
|
2015-09-26 16:13:06 -07:00
|
|
|
|
2017-06-18 17:48:02 -07:00
|
|
|
soundSense = callPackage ./soundsense.nix { };
|
|
|
|
|
2018-05-10 21:55:06 -07: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 08:06:56 -08:00
|
|
|
|
2016-01-19 13:44:33 -08:00
|
|
|
dwarf-fortress = callPackage ./wrapper {
|
|
|
|
themes = {
|
|
|
|
"phoebus" = phoebus-theme;
|
2016-02-10 05:54:55 -08:00
|
|
|
"cla" = cla-theme;
|
2016-01-19 13:44:33 -08:00
|
|
|
};
|
|
|
|
};
|
2016-01-12 10:17:46 -08:00
|
|
|
|
2016-03-03 04:02:21 -08:00
|
|
|
dwarf-therapist-original = pkgs.qt5.callPackage ./dwarf-therapist {
|
2016-01-12 10:17:46 -08: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 13:43:52 -08:00
|
|
|
|
2018-06-06 14:05:02 -07:00
|
|
|
themes = callPackage ./themes {
|
|
|
|
stdenv = stdenvNoCC;
|
|
|
|
};
|
|
|
|
|
|
|
|
phoebus-theme = themes.phoebus;
|
2016-02-10 05:54:55 -08:00
|
|
|
|
2018-06-06 14:05:02 -07:00
|
|
|
cla-theme = themes.cla;
|
2010-10-29 23:00:44 -07:00
|
|
|
};
|
2016-01-12 09:56:59 -08:00
|
|
|
|
|
|
|
in self
|