2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchurl, autoconf, automake, allegro }:
|
2017-02-21 20:41:45 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "garden-of-coloured-lights";
|
2017-02-21 20:41:45 +00:00
|
|
|
version = "1.0.9";
|
|
|
|
|
|
|
|
buildInputs = [ allegro autoconf automake ];
|
|
|
|
|
|
|
|
prePatch = ''
|
|
|
|
noInline='s/inline //'
|
|
|
|
sed -e "$noInline" -i src/stuff.c
|
|
|
|
sed -e "$noInline" -i src/stuff.h
|
|
|
|
'';
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/garden/${version}/garden-${version}.tar.gz";
|
|
|
|
sha256 = "1qsj4d7r22m5f9f5f6cyvam1y5q5pbqvy5058r7w0k4s48n77y6s";
|
|
|
|
};
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2017-02-21 20:41:45 +00:00
|
|
|
description = "Old-school vertical shoot-em-up / bullet hell";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "http://garden.sourceforge.net/drupal/";
|
2018-02-12 06:18:12 +00:00
|
|
|
maintainers = with maintainers; [ Profpatsch ];
|
2017-02-21 20:41:45 +00:00
|
|
|
license = licenses.gpl3;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|