vintagestory: fix desktopItems

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

View File

@ -48,14 +48,16 @@ stdenv.mkDerivation rec {
libXi
]));
desktopItems = makeDesktopItem {
name = "vintagestory";
desktopName = "Vintage Story";
exec = "vintagestory";
icon = "vintagestory";
comment = "Innovate and explore in a sandbox world";
categories = [ "Game" ];
};
desktopItems = [
(makeDesktopItem {
name = "vintagestory";
desktopName = "Vintage Story";
exec = "vintagestory";
icon = "vintagestory";
comment = "Innovate and explore in a sandbox world";
categories = [ "Game" ];
})
];
installPhase = ''
runHook preInstall