lbreakout2: init at 2.6.5
This commit is contained in:
parent
bcf9af560a
commit
63e967a33a
@ -99,6 +99,7 @@
|
|||||||
chris-martin = "Chris Martin <ch.martin@gmail.com>";
|
chris-martin = "Chris Martin <ch.martin@gmail.com>";
|
||||||
chrisjefferson = "Christopher Jefferson <chris@bubblescope.net>";
|
chrisjefferson = "Christopher Jefferson <chris@bubblescope.net>";
|
||||||
christopherpoole = "Christopher Mark Poole <mail@christopherpoole.net>";
|
christopherpoole = "Christopher Mark Poole <mail@christopherpoole.net>";
|
||||||
|
ciil = "Simon Lackerbauer <simon@lackerbauer.com>";
|
||||||
ckampka = "Christian Kampka <christian@kampka.net>";
|
ckampka = "Christian Kampka <christian@kampka.net>";
|
||||||
cko = "Christine Koppelt <christine.koppelt@gmail.com>";
|
cko = "Christine Koppelt <christine.koppelt@gmail.com>";
|
||||||
cleverca22 = "Michael Bishop <cleverca22@gmail.com>";
|
cleverca22 = "Michael Bishop <cleverca22@gmail.com>";
|
||||||
|
21
pkgs/games/lbreakout2/default.nix
Normal file
21
pkgs/games/lbreakout2/default.nix
Normal file
@ -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 { };
|
kytea = callPackage ../tools/text/kytea { };
|
||||||
|
|
||||||
|
lbreakout2 = callPackage ../games/lbreakout2 { };
|
||||||
|
|
||||||
leocad = callPackage ../applications/graphics/leocad { };
|
leocad = callPackage ../applications/graphics/leocad { };
|
||||||
|
|
||||||
less = callPackage ../tools/misc/less { };
|
less = callPackage ../tools/misc/less { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user