summaryrefslogtreecommitdiffstats
path: root/pkgs/games/tdm/default.nix
diff options
context:
space:
mode:
authorMichael Weiss <dev.primeos@gmail.com>2020-07-18 11:39:29 +0200
committerMichael Weiss <dev.primeos@gmail.com>2020-07-18 11:41:47 +0200
commita838caa33a780092776515c9883bca5b5dc161d6 (patch)
treeca34b498a7486f296985195b15bbe0ca9b8db326 /pkgs/games/tdm/default.nix
parenteb66a32a5630b63f2f01647a68fb729e4b46e588 (diff)
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
Diffstat (limited to 'pkgs/games/tdm/default.nix')
-rw-r--r--pkgs/games/tdm/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/games/tdm/default.nix b/pkgs/games/tdm/default.nix
index 32f91f598684..e935dab2b8f3 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;";