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