Unverified Commit dd5e70bf authored by Emily's avatar Emily Committed by GitHub
Browse files

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

parents 1b2b5a56 3489a438
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -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}"
  ];