Compare commits

..

No commits in common. "8c0cb7d8d83b21fd6dd857eca03e499f0555e2e2" and "8bffb0b8dff96c204dc37cd4b9807a37e3d5e8a2" have entirely different histories.

4 changed files with 4 additions and 18 deletions

View File

@ -1,13 +0,0 @@
{ lib, runCommand, fetchtorrent, p7zip}:
let
torrent = fetchtorrent {
url = "https://archive.org/download/quake-3-arena/quake-3-arena_archive.torrent";
hash = "sha256-6vlAzZpBlWcoosjVbIgwQ7POcRAedJuT3QSPjFhPzO4=";
};
in
runCommand "baseq3" {
nativeBuildInputs = [ p7zip ];
} ''
7z x -y "${torrent}/Quake 3 Arena.zip"
cp -r "Quake 3 Arena"/baseq3 $out
''

View File

@ -1,6 +1,6 @@
{ lib, runCommand, fetchtorrent, p7zip}: { lib, runCommand, fetchFromBittorrent, p7zip}:
let let
torrent = fetchtorrent { torrent = fetchFromBittorrent {
url = "https://archive.org/download/ZELOOTD/ZELOOTD_archive.torrent"; url = "https://archive.org/download/ZELOOTD/ZELOOTD_archive.torrent";
hash = "sha256-4CaZ2nv/vnweYwKd/qjfO8se71D1vfH9qhyDH9Aj21E="; hash = "sha256-4CaZ2nv/vnweYwKd/qjfO8se71D1vfH9qhyDH9Aj21E=";
}; };

View File

@ -1,6 +1,6 @@
{ lib, runCommand, fetchtorrent }: { lib, runCommand, fetchFromBittorrent }:
let let
torrent = fetchtorrent { torrent = fetchFromBittorrent {
url = "https://archive.org/download/super-mario-64-usa/super-mario-64-usa_archive.torrent"; url = "https://archive.org/download/super-mario-64-usa/super-mario-64-usa_archive.torrent";
hash = "sha256-6tkCKQD2modogcTo0ESookWJDm7rjA79t5ZOVz3luYM="; hash = "sha256-6tkCKQD2modogcTo0ESookWJDm7rjA79t5ZOVz3luYM=";
}; };

View File

@ -3,5 +3,4 @@
{ {
"17ce077343c6133f8c9f2d6d6d9a4ab62c8cd2aa57c40aea1f490b4c8bb21d91" = callPackage ./pkgs/sm64-us { }; "17ce077343c6133f8c9f2d6d6d9a4ab62c8cd2aa57c40aea1f490b4c8bb21d91" = callPackage ./pkgs/sm64-us { };
"cee6bc3c2a634b41728f2af8da54d9bf8cc14099" = callPackage ./pkgs/oot-debug { }; "cee6bc3c2a634b41728f2af8da54d9bf8cc14099" = callPackage ./pkgs/oot-debug { };
"5dd8ee09eabd45e80450f31d7a8b69b846f59738726929298d8a813ce5725ed3" = callPackage ./pkgs/baseq3 { };
} }