gnubg: fix desktopItems

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

View File

@ -18,15 +18,17 @@ stdenv.mkDerivation rec {
configureFlags = [ "--with-gtk" "--with--board3d" ];
desktopItems = makeDesktopItem {
desktopName = "GNU Backgammon";
name = pname;
genericName = "Backgammon";
comment = meta.description;
exec = pname;
icon = pname;
categories = [ "Game" "GTK" "StrategyGame" ];
};
desktopItems = [
(makeDesktopItem {
desktopName = "GNU Backgammon";
name = pname;
genericName = "Backgammon";
comment = meta.description;
exec = pname;
icon = pname;
categories = [ "Game" "GTK" "StrategyGame" ];
})
];
meta = with lib;
{ description = "World class backgammon application";