nixpkgs/pkgs/games/dwarf-fortress/default.nix

45 lines
1.1 KiB
Nix
Raw Normal View History

{ pkgs, stdenv, stdenvNoCC, gccStdenv }:
let
callPackage = pkgs.newScope self;
self = rec {
dwarf-fortress-original = callPackage ./game.nix { };
2015-09-26 23:13:06 +00:00
dfhack = callPackage ./dfhack {
inherit (pkgs.perlPackages) XMLLibXML XMLLibXSLT;
stdenv = gccStdenv;
};
2015-09-26 23:13:06 +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;
dwarf-fortress = callPackage ./wrapper {
themes = {
"phoebus" = phoebus-theme;
"cla" = cla-theme;
};
};
2016-01-12 18:17:46 +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 { };
themes = callPackage ./themes {
stdenv = stdenvNoCC;
};
phoebus-theme = themes.phoebus;
cla-theme = themes.cla;
};
in self