about summary refs log tree commit diff
path: root/nixpkgs/pkgs/games/alephone/yuge/default.nix
blob: 6ae73f984a4fc390a4b791fb722e40b756da408b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ alephone, fetchurl }:

alephone.makeWrapper rec {
  pname = "yuge";
  version = "0";
  desktopName = "Marathon-Yuge";

  zip = fetchurl {
    url = "https://lochnits.com/marathon/yuge/files/Mararthon_Yuge.zip";
    sha256 = "sha256-dZHInYThB/4igpAXbUadXwPvh2Fl3XGZ4ficg7IEnNc=";
  };

  meta = {
    description =
      "30 level Marathon scenario, plus 225 secret levels for many extra hours of gameplay";
    homepage = "https://lochnits.com/marathon/yuge/";
  };
}