libretro.scummvm: unstable-2023-03-13 -> unstable-2022-04-06

Let's keep an older version until we introduce the
`libretro-{deps,common}` as proper derivations.
This commit is contained in:
Thiago Kenji Okada 2023-03-13 17:20:54 +00:00
parent dab6bebe7c
commit f65ad3376b

View file

@ -818,8 +818,19 @@ in
};
};
scummvm = mkLibretroCore {
scummvm = mkLibretroCore rec {
core = "scummvm";
version = "unstable-2022-04-06";
# Commit below introduces libretro platform, that uses libretro-{deps,common} as
# submodules. We will probably need to introduce this as separate derivations,
# but for now let's just use the last known version that does not use it.
# https://github.com/libretro/scummvm/commit/36446fa6eb33e67cc798f56ce1a31070260e2ada
src = fetchFromGitHub {
owner = "libretro";
repo = core;
rev = "2fb2e4c551c9c1510c56f6e890ee0300b7b3fca3";
hash = "sha256-wrlFqu+ONbYH4xMFDByOgySobGrkhVc7kYWI4JzA4ew=";
};
extraBuildInputs = [ fluidsynth libjpeg libvorbis libGLU libGL ];
makefile = "Makefile";
preConfigure = "cd backends/platform/libretro/build";