159e378cbb
GitOrigin-RevId: c04d5652cfa9742b1d519688f65d1bbccea9eb7e
19 lines
526 B
Nix
19 lines
526 B
Nix
{ alephone, fetchurl }:
|
|
|
|
alephone.makeWrapper rec {
|
|
pname = "pathways-into-darkness";
|
|
desktopName = "Pathways-Into-Darkness";
|
|
version = "1.1.1";
|
|
|
|
zip = fetchurl {
|
|
url = "http://simplici7y.com/version/file/1185/AOPID_v1.1.1.zip";
|
|
hash = "sha256-j/x1Mp2snZAwttaffuaTU8II/zcrm4+4PrrYwpnsA3U=";
|
|
};
|
|
|
|
meta = {
|
|
description = ''
|
|
Port of the 1993 mac game "Pathways Into Darkness" by Bungie to the Aleph One engine'';
|
|
homepage = "http://simplici7y.com/items/aleph-one-pathways-into-darkness";
|
|
};
|
|
|
|
}
|