From 40262d4559bde29914feebe729f39323be58acdf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Milan=20P=C3=A4ssler?= Date: Sat, 19 Dec 2020 21:11:21 +0100 Subject: [PATCH] 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. --- pkgs/games/xonotic/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/games/xonotic/default.nix b/pkgs/games/xonotic/default.nix index 60ebdcf8eeb..6f7ee6962bf 100644 --- a/pkgs/games/xonotic/default.nix +++ b/pkgs/games/xonotic/default.nix @@ -45,7 +45,7 @@ let desktopItem = makeDesktopItem { name = "xonotic"; - exec = "$out/bin/xonotic"; + exec = "xonotic"; comment = meta.description; desktopName = "Xonotic"; categories = "Game;Shooter;";