Skip to content

Commit

Permalink
tdm: Fix the build
Browse files Browse the repository at this point in the history
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
  • Loading branch information
primeos committed Jul 18, 2020
1 parent eb66a32 commit a838caa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkgs/games/tdm/default.nix
Expand Up @@ -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;";
Expand Down

0 comments on commit a838caa

Please sign in to comment.