From a838caa33a780092776515c9883bca5b5dc161d6 Mon Sep 17 00:00:00 2001 From: Michael Weiss Date: Sat, 18 Jul 2020 11:39:29 +0200 Subject: [PATCH] tdm: Fix the build Was failing in the desktop-file validation stage [0]: /nix/store/XXX-tdm.desktop/share/applications/tdm.desktop: error: value "False" for boolean key "Terminal" in group "Desktop Entry" contains invalid characters, boolean values must be "false" or "true" [0]: https://hydra.nixos.org/build/123852137 --- pkgs/games/tdm/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/games/tdm/default.nix b/pkgs/games/tdm/default.nix index 32f91f59868..e935dab2b8f 100644 --- a/pkgs/games/tdm/default.nix +++ b/pkgs/games/tdm/default.nix @@ -11,7 +11,7 @@ let name = pname; exec = "@out@/bin/${pname}"; icon = pname; - terminal = "False"; + terminal = "false"; comment = "The Dark Mod - stealth FPS inspired by the Thief series"; type = "Application"; categories = "Game;";