mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-29 02:13:23 +00:00
22 lines
554 B
Nix
22 lines
554 B
Nix
{ alephone, fetchurl }:
|
|
|
|
alephone.makeWrapper rec {
|
|
pname = "marathon-eternal";
|
|
version = "1.2.1";
|
|
desktopName = "Marathon-Eternal";
|
|
|
|
zip = fetchurl {
|
|
url = "https://eternal.bungie.org/files/_releases/EternalXv121.zip";
|
|
hash = "sha256-8smVdL7CYbrIzCqu3eqk6KQempKLWuEJ9qWStdWkYWo=";
|
|
};
|
|
|
|
sourceRoot = "Eternal 1.2.1";
|
|
|
|
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/";
|
|
};
|
|
|
|
}
|