ppsspp-{sdl,sdl-wayland,qt}: Install desktop icons

This commit is contained in:
OPNA2608 2023-05-28 13:46:27 +02:00 committed by Anderson Torres
parent 5b57136c60
commit 958a28e4be

View File

@ -97,7 +97,7 @@ stdenv.mkDerivation (finalAttrs: {
''
runHook preInstall
mkdir -p $out/share/{applications,ppsspp}
mkdir -p $out/share/{applications,ppsspp,icons}
'' + (if enableQt then ''
install -Dm555 PPSSPPQt $out/bin/ppsspp
wrapProgram $out/bin/ppsspp \
@ -110,6 +110,7 @@ stdenv.mkDerivation (finalAttrs: {
--prefix LD_LIBRARY_PATH : ${vulkanPath} \
'' + "\n" + ''
mv assets $out/share/ppsspp
mv ../icons/hicolor $out/share/icons
runHook postInstall
'';