From 958a28e4be9ae86c24817122a2eeb4c787af674e Mon Sep 17 00:00:00 2001 From: OPNA2608 Date: Sun, 28 May 2023 13:46:27 +0200 Subject: [PATCH] ppsspp-{sdl,sdl-wayland,qt}: Install desktop icons --- pkgs/applications/emulators/ppsspp/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/applications/emulators/ppsspp/default.nix b/pkgs/applications/emulators/ppsspp/default.nix index 5068022a4c25..64a33bf5fec0 100644 --- a/pkgs/applications/emulators/ppsspp/default.nix +++ b/pkgs/applications/emulators/ppsspp/default.nix @@ -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 '';