2024-09-07 02:29:12 +02:00
|
|
|
{ lib, runCommand, fetchtorrent, p7zip}:
|
2023-10-23 22:37:48 +02:00
|
|
|
let
|
2024-09-07 02:29:12 +02:00
|
|
|
torrent = fetchtorrent {
|
2023-10-23 22:37:48 +02:00
|
|
|
url = "https://archive.org/download/ZELOOTD/ZELOOTD_archive.torrent";
|
|
|
|
hash = "sha256-4CaZ2nv/vnweYwKd/qjfO8se71D1vfH9qhyDH9Aj21E=";
|
|
|
|
};
|
|
|
|
in
|
|
|
|
runCommand "oot-debug.z64" { nativeBuildInputs = [ p7zip ]; } ''
|
|
|
|
7z x "${torrent}/ZELOOTD.zip"
|
|
|
|
cp "ZELOOTD.z64" "$out"
|
|
|
|
''
|