inav-configurator: fix desktopItems

This commit is contained in:
h7x4 2024-10-01 23:06:44 +02:00
parent 2d3f38c6a4
commit 452ddd4020
No known key found for this signature in database
GPG Key ID: 9F2F7D8250F35146

View File

@ -33,14 +33,16 @@ stdenv.mkDerivation rec {
runHook postInstall
'';
desktopItems = makeDesktopItem {
name = pname;
exec = pname;
icon = pname;
comment = "iNavFlight configuration tool";
desktopName = "iNav Configurator";
genericName = "Flight controller configuration tool";
};
desktopItems = [
(makeDesktopItem {
name = pname;
exec = pname;
icon = pname;
comment = "iNavFlight configuration tool";
desktopName = "iNav Configurator";
genericName = "Flight controller configuration tool";
})
];
meta = with lib; {
description = "INav flight control system configuration tool";