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
26 lines
585 B
Nix
26 lines
585 B
Nix
{
|
|
lib,
|
|
alephone,
|
|
requireFile,
|
|
}:
|
|
|
|
alephone.makeWrapper {
|
|
pname = "apotheosis-x";
|
|
version = "1.1";
|
|
desktopName = "Marathon-Apotheosis-X";
|
|
|
|
zip = requireFile {
|
|
name = "Apotheosis_X_1.1.zip";
|
|
url = "https://www.moddb.com/mods/apotheosis-x/downloads";
|
|
hash = "sha256-4Y/RQQeN4VTpig8ZyxUpVHwzN8W8ciTBCkSzND8SMbs=";
|
|
};
|
|
|
|
sourceRoot = "Apotheosis X 1.1";
|
|
|
|
meta = {
|
|
description = "Total conversion for Marathon Infinity running on the Aleph One engine";
|
|
homepage = "https://simplici7y.com/items/apotheosis-x-5";
|
|
license = lib.licenses.unfree;
|
|
};
|
|
}
|