ut1999: fix library search paths on x86_64-linux (#332577)

This commit is contained in:
Emily
2024-09-03 04:16:01 +01:00
committed by GitHub
+3 -2
View File
@@ -102,8 +102,9 @@ in stdenv.mkDerivation {
runHook postInstall
'';
# .so files in the SystemARM64 directory are not loaded properly on aarch64-linux
appendRunpaths = lib.optionals (stdenv.hostPlatform.system == "aarch64-linux") [
# Bring in game's .so files into lookup. Otherwise game fails to start
# as: `Object not found: Class Render.Render`
appendRunpaths = [
"${placeholder "out"}/${systemDir}"
];