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

alephone.makeWrapper rec {
  pname = "marathon-eternal";
  version = "1.2.0";
  desktopName = "Marathon-Eternal";

  zip = fetchurl {
    url = "http://eternal.bungie.org/files/_releases/EternalXv120.zip";
    sha256 = "1qrvx0sp9xc8zbpp5yz8jdz458ajzmyv2si7hrppiyawc8dpcwck";
  };

  sourceRoot = "Eternal 1.2.0";

  meta = {
    description =
      "Picking up from the end of the Marathon trilogy, you find yourself suddenly ninety-four years in the future, in the year 2905";
    homepage = "http://eternal.bungie.org/";
  };

}