libretro.play: fix build
This commit is contained in:
parent
78b9e1252d
commit
1bf3720f78
3 changed files with 5 additions and 8 deletions
|
@ -612,7 +612,6 @@ in
|
|||
makefile = "Makefile";
|
||||
cmakeFlags = [ "-DBUILD_PLAY=OFF -DBUILD_LIBRETRO_CORE=ON" ];
|
||||
postBuild = "mv Source/ui_libretro/play_libretro${stdenv.hostPlatform.extensions.sharedLibrary} play_libretro${stdenv.hostPlatform.extensions.sharedLibrary}";
|
||||
broken = true; # since 2021-01-03
|
||||
};
|
||||
|
||||
ppsspp = mkLibRetroCore {
|
||||
|
|
|
@ -357,10 +357,10 @@
|
|||
"fetchSubmodules": true
|
||||
},
|
||||
"play": {
|
||||
"owner": "libretro",
|
||||
"owner": "jpd002",
|
||||
"repo": "Play-",
|
||||
"rev": "884ae3b96c631f235cd18b2643d1f318fa6951fb",
|
||||
"sha256": "zK1GRt3Rp9DsGmr0EvRfI/F1FzHc/afjFsATKIGYN1U=",
|
||||
"rev": "b8e16159734c2068db0f2f12b11bc16ef55058ce",
|
||||
"sha256": "qjp1rEjmDAAB2wXITA3lAS+ERJuZinoneJToYiYRi/w=",
|
||||
"fetchSubmodules": true
|
||||
},
|
||||
"ppsspp": {
|
||||
|
|
|
@ -61,7 +61,7 @@ CORES = {
|
|||
"parallel-n64": {"repo": "parallel-n64"},
|
||||
"pcsx_rearmed": {"repo": "pcsx_rearmed"},
|
||||
"picodrive": {"repo": "picodrive", "fetch_submodules": True},
|
||||
"play": {"repo": "Play-", "fetch_submodules": True},
|
||||
"play": {"repo": "Play-", "owner": "jpd002", "fetch_submodules": True},
|
||||
"ppsspp": {"repo": "ppsspp", "owner": "hrydgard", "fetch_submodules": True},
|
||||
"prboom": {"repo": "libretro-prboom"},
|
||||
"prosystem": {"repo": "prosystem-libretro"},
|
||||
|
@ -116,9 +116,7 @@ def get_repo_hashes():
|
|||
repo_hashes = {}
|
||||
|
||||
for core, repo in CORES.items():
|
||||
info(
|
||||
f"Getting repo hash for '{core}'...",
|
||||
)
|
||||
info(f"Getting repo hash for '{core}'...")
|
||||
repo_hashes[core] = get_repo_hash(**repo)
|
||||
|
||||
return repo_hashes
|
||||
|
|
Loading…
Reference in a new issue