mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 22:36:23 +01: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
21 lines
553 B
Nix
21 lines
553 B
Nix
{ alephone, fetchurl }:
|
|
|
|
alephone.makeWrapper rec {
|
|
pname = "marathon-eternal";
|
|
version = "1.2.0";
|
|
desktopName = "Marathon-Eternal";
|
|
|
|
zip = fetchurl {
|
|
url = "http://eternal.bungie.org/files/_releases/EternalXv120.zip";
|
|
hash = "sha256-k3F2G2Jc+XhvhidqsX39UqFCfpPo+3Lv+oj1dDXoO+M=";
|
|
};
|
|
|
|
sourceRoot = "Eternal 1.2.0";
|
|
|
|
meta = {
|
|
description =
|
|
"Picking up from the end of the Marathon trilogy, you find yourself suddenly ninety-four years in the future, in the year 2905";
|
|
homepage = "http://eternal.bungie.org/";
|
|
};
|
|
|
|
}
|