add some big N resources
This commit is contained in:
2023-10-23 22:37:48 +02:00
commit 8bffb0b8df
5 changed files with 42 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
{ lib, runCommand, fetchFromBittorrent, p7zip}:
let
torrent = fetchFromBittorrent {
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"
''