garden-of-coloured-lights: add -fcommon workaround

Workaround build failure on -fno-common toolchains like upstream
gcc-10. Otherwise build fails as:

ld: main.o:src/main.c:58: multiple definition of
`eclass'; eclass.o:src/eclass.c:21: first defined here

+5
+5
pkgs/games/garden-of-coloured-lights/default.nix
··· 18 18 sha256 = "1qsj4d7r22m5f9f5f6cyvam1y5q5pbqvy5058r7w0k4s48n77y6s"; 19 19 }; 20 20 21 + # Workaround build failure on -fno-common toolchains: 22 + # ld: main.o:src/main.c:58: multiple definition of 23 + # `eclass'; eclass.o:src/eclass.c:21: first defined here 24 + NIX_CFLAGS_COMPILE = "-fcommon"; 25 + 21 26 meta = with lib; { 22 27 description = "Old-school vertical shoot-em-up / bullet hell"; 23 28 homepage = "http://garden.sourceforge.net/drupal/";