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:
parent
cb312f3d03
commit
40262d4559
@ -45,7 +45,7 @@ let
|
|||||||
|
|
||||||
desktopItem = makeDesktopItem {
|
desktopItem = makeDesktopItem {
|
||||||
name = "xonotic";
|
name = "xonotic";
|
||||||
exec = "$out/bin/xonotic";
|
exec = "xonotic";
|
||||||
comment = meta.description;
|
comment = meta.description;
|
||||||
desktopName = "Xonotic";
|
desktopName = "Xonotic";
|
||||||
categories = "Game;Shooter;";
|
categories = "Game;Shooter;";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user