2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchurl, SDL, SDL_mixer, zlib, libpng, libintl }:
|
2017-06-09 08:21:17 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "lbreakout2";
|
2017-06-09 08:21:17 +01:00
|
|
|
version = "2.6.5";
|
2018-03-14 19:15:06 +00:00
|
|
|
buildInputs = [ SDL SDL_mixer zlib libpng libintl ];
|
2017-06-09 08:21:17 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "mirror://sourceforge/lgames/${pname}-${version}.tar.gz";
|
2017-06-09 08:21:17 +01:00
|
|
|
sha256 = "0vwdlyvh7c4y80q5vp7fyfpzbqk9lq3w8pvavi139njkalbxc14i";
|
|
|
|
};
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2017-06-09 08:21:17 +01:00
|
|
|
description = "Breakout clone from the LGames series";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://lgames.sourceforge.net/LBreakout2/";
|
2017-06-09 18:23:40 +01:00
|
|
|
license = licenses.gpl2;
|
2017-06-09 08:21:17 +01:00
|
|
|
maintainers = [ maintainers.ciil ];
|
2017-06-10 08:43:45 +01:00
|
|
|
platforms = platforms.unix;
|
2021-01-15 04:31:39 +00:00
|
|
|
hydraPlatforms = lib.platforms.linux; # sdl-config times out on darwin
|
2017-06-09 08:21:17 +01:00
|
|
|
};
|
|
|
|
}
|