From 16c80ce91184447e2f4a8271bd8e75be644bc80c Mon Sep 17 00:00:00 2001 From: kilianar Date: Sun, 30 Apr 2023 17:56:18 +0200 Subject: [PATCH] zotero: remove version from name in desktopItem Using the version in the name attribute of the desktop item led to some issues with desktop environments that expect the name to remain unchanged. --- pkgs/applications/office/zotero/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/office/zotero/default.nix b/pkgs/applications/office/zotero/default.nix index 3abf9f16b080..35178fd4a9a1 100644 --- a/pkgs/applications/office/zotero/default.nix +++ b/pkgs/applications/office/zotero/default.nix @@ -97,7 +97,7 @@ stdenv.mkDerivation rec { ''; desktopItem = makeDesktopItem { - name = "zotero-${version}"; + name = "zotero"; exec = "zotero -url %U"; icon = "zotero"; comment = meta.description;