gaphor: fix desktopItems

This commit is contained in:
h7x4 2024-10-01 23:09:23 +02:00
parent 9f4fda9f6e
commit b6411eb1fe
No known key found for this signature in database
GPG Key ID: 9F2F7D8250F35146

View File

@ -51,13 +51,15 @@ buildPythonApplication rec {
tinycss2
];
desktopItems = makeDesktopItem {
name = pname;
exec = "gaphor";
icon = "gaphor";
comment = meta.description;
desktopName = "Gaphor";
};
desktopItems = [
(makeDesktopItem {
name = pname;
exec = "gaphor";
icon = "gaphor";
comment = meta.description;
desktopName = "Gaphor";
})
];
# Disable automatic wrapGAppsHook3 to prevent double wrapping
dontWrapGApps = true;