fsuae-launcher: fix find executable

This commit is contained in:
Christian Kögler 2023-07-14 18:06:36 +02:00 committed by Anderson Torres
parent 75cfb4925a
commit e7ec942dea

View file

@ -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 = {