libretro-core-info: set INSTALLDIR to RetroArch's expected location

This commit is contained in:
Thiago Kenji Okada 2022-12-23 21:46:32 +00:00
parent 1cdc2a2452
commit 61ffb5da59

View File

@ -14,7 +14,12 @@ stdenvNoCC.mkDerivation rec {
rev = "v${version}";
};
makeFlags = [ "PREFIX=$(out)" ];
makeFlags = [
"PREFIX=$(out)"
# By default install in $(PREFIX)/share/libretro/info
# that is not in RetroArch's core info path
"INSTALLDIR=$(PREFIX)/share/retroarch/cores"
];
dontBuild = true;