10 stdenv.mkDerivation rec {
11 pname = "garden-of-coloured-lights";
18 buildInputs = [ allegro ];
21 noInline='s/inline //'
22 sed -e "$noInline" -i src/stuff.c
23 sed -e "$noInline" -i src/stuff.h
27 url = "mirror://sourceforge/garden/${version}/garden-${version}.tar.gz";
28 sha256 = "1qsj4d7r22m5f9f5f6cyvam1y5q5pbqvy5058r7w0k4s48n77y6s";
31 # Workaround build failure on -fno-common toolchains:
32 # ld: main.o:src/main.c:58: multiple definition of
33 # `eclass'; eclass.o:src/eclass.c:21: first defined here
34 env.NIX_CFLAGS_COMPILE = "-fcommon";
37 description = "Old-school vertical shoot-em-up / bullet hell";
38 mainProgram = "garden";
39 homepage = "https://garden.sourceforge.net/drupal/";
41 license = licenses.gpl3;