OpenTTD icon

OpenTTD 15.1

Open-source transport simulation game

Installation

System wide:

{
  environment.systemPackages = with nix-casks.packages.${system}; [
    openttd # OpenTTD
  ];
}

Home Manager:

{
  home.packages = with nix-casks.packages.${system}; [
    openttd # OpenTTD
  ];
}

Package Definition

{
  "pname": "openttd",
  "version": "15.1",
  "src": {
    "url": "https://cdn.openttd.org/openttd-releases/15.1/openttd-15.1-macos-universal.zip",
    "sha256": "492508eb79e82a60f69f9bc0eac12793cf7ecd0ba8d53110cd953bb7a4e37fff"
  },
  "installPhase": [
    "mkdir -p \"$out/Applications/OpenTTD.app\" && cp -r \"OpenTTD.app\" \"$out/Applications\""
  ],
  "meta": {
    "description": "Open-source transport simulation game",
    "homepage": "https://www.openttd.org/"
  }
}