From 08a745f33ae64c5ed5e4010bfba5c214ee52d594 Mon Sep 17 00:00:00 2001 From: mivorasu Date: Mon, 28 Jul 2025 13:23:34 +0800 Subject: [PATCH] wechat: install icon to a better place for linux --- pkgs/by-name/we/wechat/linux.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/we/wechat/linux.nix b/pkgs/by-name/we/wechat/linux.nix index 0d4f42bf987d..6c0773050cce 100644 --- a/pkgs/by-name/we/wechat/linux.nix +++ b/pkgs/by-name/we/wechat/linux.nix @@ -22,8 +22,8 @@ appimageTools.wrapAppImage { extraInstallCommands = '' mkdir -p $out/share/applications cp ${appimageContents}/wechat.desktop $out/share/applications/ - mkdir -p $out/share/pixmaps - cp ${appimageContents}/wechat.png $out/share/pixmaps/ + mkdir -p $out/share/icons/hicolor/256x256/apps + cp ${appimageContents}/wechat.png $out/share/icons/hicolor/256x256/apps/ substituteInPlace $out/share/applications/wechat.desktop --replace-fail AppRun wechat '';