libretro.2048: init at unstable-2023-02-20

This commit is contained in:
Sergey Kazenyuk 2023-05-29 13:47:48 +03:00
parent 2873fcab49
commit f9e2f0ed96
3 changed files with 15 additions and 0 deletions

View file

@ -970,6 +970,14 @@ in
};
};
twenty-fortyeight = mkLibretroCore {
core = "2048";
meta = {
description = "Port of 2048 puzzle game to the libretro API";
license = lib.licenses.unlicense;
};
};
vba-m = mkLibretroCore {
core = "vbam";
src = getCoreSrc "vba-m";

View file

@ -1,4 +1,10 @@
{
"2048": {
"owner": "libretro",
"repo": "libretro-2048",
"rev": "331c1de588ed8f8c370dcbc488e5434a3c09f0f2",
"sha256": "gPrAmoBnfuTnW6t699pqS43vE6t0ca3jZcqTNRaJipA="
},
"atari800": {
"owner": "libretro",
"repo": "libretro-atari800",

View file

@ -12,6 +12,7 @@ SCRIPT_PATH = Path(__file__).absolute().parent
HASHES_PATH = SCRIPT_PATH / "hashes.json"
GET_REPO_THREADS = int(os.environ.get("GET_REPO_THREADS", 8))
CORES = {
"2048": {"repo": "libretro-2048"},
"atari800": {"repo": "libretro-atari800"},
"beetle-gba": {"repo": "beetle-gba-libretro"},
"beetle-lynx": {"repo": "beetle-lynx-libretro"},