mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 15:33:13 +00:00
2641d97cbf
Reproduction script: # Bulk rewrite ./maintainers/scripts/sha-to-sri.py pkgs/by-name # Revert some packages which will need manual intervention for n in amdvlk azure-cli cargo-profiler corefonts flatito fluxcd gist perf_data_converter protoc-gen-js solana-cli swt verible; do git checkout -- "pkgs/by-name/${n:0:2}/${n}" done
20 lines
526 B
Nix
20 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";
|
|
};
|
|
|
|
}
|