Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
24 lines
830 B
Nix
24 lines
830 B
Nix
{ alephone, fetchurl }:
|
||
|
||
alephone.makeWrapper {
|
||
pname = "rubicon-x";
|
||
version = "20150620";
|
||
desktopName = "Marathon-Rubicon-X";
|
||
|
||
zip = fetchurl {
|
||
url = "http://files5.bungie.org/marathon/marathonRubiconX.zip";
|
||
hash = "sha256-9UZii2VLDlAi0qJKq8LiMEPZDscfpLnnvuZcxROKuiQ=";
|
||
};
|
||
|
||
sourceRoot = "Rubicon X ƒ";
|
||
|
||
meta = {
|
||
description = "Unofficial forth chapter of the Marathon series";
|
||
longDescription = ''
|
||
Rubicon X is a free, cross platform, first person shooter that continues the story of Bungie’s Marathon trilogy. First released as Marathon:Rubicon in 2001, Rubicon X is a complete overhaul of the original. It features all new high-resolution artwork, new and updated maps, and enough surprises to feel like a whole new game.
|
||
'';
|
||
homepage = "http://www.marathonrubicon.com/";
|
||
};
|
||
|
||
}
|