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
19 lines
424 B
Nix
19 lines
424 B
Nix
{ alephone, fetchurl }:
|
|
|
|
alephone.makeWrapper rec {
|
|
pname = "marathon-red";
|
|
version = "0";
|
|
desktopName = "Marathon-Red";
|
|
|
|
zip = fetchurl {
|
|
url = "http://files3.bungie.org/trilogy/MarathonRED.zip";
|
|
hash = "sha256-/GGjP0cFTwlndpovsVo4VnuY2TEU9+m2/WnYnanVI9w=";
|
|
};
|
|
|
|
meta = {
|
|
description = "Survival horror-esque Marathon conversion";
|
|
homepage = "https://alephone.lhowon.org/scenarios.html";
|
|
};
|
|
|
|
}
|