forked from mirrors/nixpkgs
garden-of-coloured-lights: init at 1.0.9
This commit is contained in:
parent
34afc31c49
commit
07bf113bbe
27
pkgs/games/garden-of-coloured-lights/default.nix
Normal file
27
pkgs/games/garden-of-coloured-lights/default.nix
Normal file
|
@ -0,0 +1,27 @@
|
|||
{ stdenv, fetchurl, autoconf, automake, allegro }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "garden-of-coloured-lights-${version}";
|
||||
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";
|
||||
};
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Old-school vertical shoot-em-up / bullet hell";
|
||||
homepage = http://garden.sourceforge.net/drupal/;
|
||||
maintainers = with maintainers; [ profpatsch ];
|
||||
license = licenses.gpl3;
|
||||
};
|
||||
|
||||
}
|
|
@ -6936,7 +6936,8 @@ with pkgs;
|
|||
|
||||
agg = callPackage ../development/libraries/agg { };
|
||||
|
||||
allegro = callPackage ../development/libraries/allegro {};
|
||||
allegro = allegro4;
|
||||
allegro4 = callPackage ../development/libraries/allegro {};
|
||||
allegro5 = callPackage ../development/libraries/allegro/5.nix {};
|
||||
|
||||
amrnb = callPackage ../development/libraries/amrnb { };
|
||||
|
@ -16392,6 +16393,8 @@ with pkgs;
|
|||
|
||||
gambatte = callPackage ../games/gambatte { };
|
||||
|
||||
garden-of-coloured-lights = callPackage ../games/garden-of-coloured-lights { allegro = allegro4; };
|
||||
|
||||
gav = callPackage ../games/gav { };
|
||||
|
||||
gcs = callPackage ../games/gcs { };
|
||||
|
|
Loading…
Reference in a new issue