12 lines
707 B
Nix
12 lines
707 B
Nix
{ pkgs ? import <nixpkgs> {} }:
|
|
|
|
rec {
|
|
fetchgog = pkgs.callPackage ./utils/fetchgog/default.nix { inherit pkgs; };
|
|
gog-dosbox-launcher = pkgs.callPackage ./utils/gog-dosbox-launcher.nix { inherit pkgs; };
|
|
|
|
settlers-2-gold = pkgs.callPackage ./games/settlers-2-gold.nix { inherit pkgs; inherit fetchgog; };
|
|
settlers-4-gold = pkgs.callPackage ./games/settlers-4-gold.nix { inherit pkgs; inherit fetchgog; };
|
|
space-colony = pkgs.callPackage ./games/space-colony.nix { inherit pkgs; inherit fetchgog; };
|
|
stronghold = pkgs.callPackage ./games/stronghold.nix { inherit pkgs; inherit fetchgog; };
|
|
stronghold-crusader = pkgs.callPackage ./games/stronghold-crusader.nix { inherit pkgs; inherit fetchgog; };
|
|
}
|