159e378cbb
GitOrigin-RevId: c04d5652cfa9742b1d519688f65d1bbccea9eb7e
18 lines
468 B
Nix
18 lines
468 B
Nix
{ alephone, fetchurl }:
|
|
|
|
alephone.makeWrapper rec {
|
|
pname = "yuge";
|
|
version = "0";
|
|
desktopName = "Marathon-Yuge";
|
|
|
|
zip = fetchurl {
|
|
url = "https://lochnits.com/marathon/yuge/files/Mararthon_Yuge.zip";
|
|
hash = "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/";
|
|
};
|
|
}
|