lbreakout2: init at 2.6.5

This commit is contained in:
Simon Lackerbauer 2017-06-09 09:21:17 +02:00
parent bcf9af560a
commit 63e967a33a
3 changed files with 24 additions and 0 deletions

@ -99,6 +99,7 @@
chris-martin = "Chris Martin <ch.martin@gmail.com>";
chrisjefferson = "Christopher Jefferson <chris@bubblescope.net>";
christopherpoole = "Christopher Mark Poole <mail@christopherpoole.net>";
ciil = "Simon Lackerbauer <simon@lackerbauer.com>";
ckampka = "Christian Kampka <christian@kampka.net>";
cko = "Christine Koppelt <christine.koppelt@gmail.com>";
cleverca22 = "Michael Bishop <cleverca22@gmail.com>";

@ -0,0 +1,21 @@
{ stdenv, fetchurl, SDL, SDL_mixer, zlib, libpng, gcc }:
stdenv.mkDerivation rec {
name = "lbreakout2-${version}";
version = "2.6.5";
buildInputs = [ SDL SDL_mixer zlib libpng gcc ];
src = fetchurl {
url = "http://downloads.sourceforge.net/lgames/${name}.tar.gz";
sha256 = "0vwdlyvh7c4y80q5vp7fyfpzbqk9lq3w8pvavi139njkalbxc14i";
};
meta = with stdenv.lib; {
description = "Breakout clone from the LGames series";
homepage = http://lgames.sourceforge.net/LBreakout2/;
license = licenses.gpl;
maintainers = [ maintainers.ciil ];
platforms = platforms.linux;
};
}

@ -2644,6 +2644,8 @@ with pkgs;
kytea = callPackage ../tools/text/kytea { };
lbreakout2 = callPackage ../games/lbreakout2 { };
leocad = callPackage ../applications/graphics/leocad { };
less = callPackage ../tools/misc/less { };