Commit e7ec942d authored by Christian Kögler's avatar Christian Kögler Committed by Anderson Torres
Browse files

fsuae-launcher: fix find executable

parent 75cfb492
Loading
Loading
Loading
Loading
+5 −2
Original line number Diff line number Diff line
@@ -34,8 +34,11 @@ stdenv.mkDerivation (finalAttrs: {

  preFixup = ''
    wrapQtApp "$out/bin/fs-uae-launcher" \
      --set PYTHONPATH "$PYTHONPATH" \
      --prefix PATH : ${lib.makeBinPath [ fsuae ]}
      --set PYTHONPATH "$PYTHONPATH"

    # fs-uae-launcher search side by side for fs-uae
    # see $src/fsgs/plugins/pluginexecutablefinder.py#find_executable
    ln -s ${fsuae}/bin/fs-uae $out/bin
  '';

  meta = {