_0verkill: add -fcommon workaround for gcc-10

Without the change the build against upstream gcc-10 build fails as:

ld: sprite.o:/build/0verkill/data.h:171: multiple definition of `obj_attr'; server.o:/build/0verkill/data.h:171: first defined here
ld: sprite.o:/build/0verkill/data.h:142: multiple definition of `weapon_name'; server.o:/build/0verkill/data.h:142: first defined here

Use -fcommon as a workeround until upstream updates the code.

+3
+3
pkgs/games/0verkill/default.nix
··· 27 autoupdate 28 ''; 29 30 hardeningDisable = [ "all" ]; # Someday the upstream will update the code... 31 32 meta = with lib; {
··· 27 autoupdate 28 ''; 29 30 + # The code needs an update for gcc-10: 31 + # https://github.com/hackndev/0verkill/issues/7 32 + NIX_CFLAGS_COMPILE = "-fcommon"; 33 hardeningDisable = [ "all" ]; # Someday the upstream will update the code... 34 35 meta = with lib; {