fix: desktop file name will match the one from the wrapper (#47)

This commit is contained in:
Dmitry Chermnykh
2025-04-15 19:34:39 +05:00
committed by GitHub
parent 6a9daeae2f
commit 02e0840599
3 changed files with 1 additions and 1 deletions

View File

@@ -9,7 +9,7 @@ let
let
variant = (builtins.fromJSON (builtins.readFile ./sources.json)).${entry}.${system};
desktopFile = if name == "beta" then "zen.desktop" else "zen_${name}.desktop";
desktopFile = "zen-${name}.desktop";
in
pkgs.callPackage ./package.nix {
inherit name desktopFile variant;