xonotic: fix desktop item

The desktop item was referring to "$out/bin/xonotic" as executable, but
since it's built in its own derivation now, "$out" did not contain the
xonotic wrapper.
Since it seems to be common practise to use a relative path, I changed
it to do that here as well.
This commit is contained in:
Milan Pässler 2020-12-19 21:11:21 +01:00
parent cb312f3d03
commit 40262d4559
No known key found for this signature in database
GPG Key ID: A6DC6A7CB0B97859
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ let
desktopItem = makeDesktopItem {
name = "xonotic";
exec = "$out/bin/xonotic";
exec = "xonotic";
comment = meta.description;
desktopName = "Xonotic";
categories = "Game;Shooter;";