From 1cbde05767dacdbb5e2c07a4b45fa72f8d9307ed Mon Sep 17 00:00:00 2001 From: m3tam3re Date: Thu, 30 Jul 2026 09:40:55 +0200 Subject: [PATCH] fix(openwork): use renamed com.differentai.openwork.desktop from AppImage Upstream renamed the desktop file from openwork.desktop to com.differentai.openwork.desktop (reverse-DNS), causing the build to fail with "cannot stat '.../openwork.desktop'". Source the new name while keeping the install destination as openwork.desktop so icon and Exec substitution stay unchanged. --- pkgs/openwork/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/openwork/default.nix b/pkgs/openwork/default.nix index eee9eb6..a418e40 100644 --- a/pkgs/openwork/default.nix +++ b/pkgs/openwork/default.nix @@ -25,7 +25,7 @@ in inherit pname version src; extraInstallCommands = '' - install -m 444 -D ${appimageContents}/openwork.desktop \ + install -m 444 -D ${appimageContents}/com.differentai.openwork.desktop \ $out/share/applications/openwork.desktop substituteInPlace $out/share/applications/openwork.desktop \ --replace-fail 'Exec=AppRun %U' 'Exec=${pname} %U'