6127ec1665
sdl-config has an issue on hydra where it will hang when run on Darwin. This is probably related to the headless mode that is set up & the sdl-config program waiting for a graphical to finish.
22 lines
684 B
Nix
22 lines
684 B
Nix
{ stdenv, fetchurl, SDL, SDL_mixer, zlib, libpng, libintl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "lbreakout2-${version}";
|
|
version = "2.6.5";
|
|
buildInputs = [ SDL SDL_mixer zlib libpng libintl ];
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/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.gpl2;
|
|
maintainers = [ maintainers.ciil ];
|
|
platforms = platforms.unix;
|
|
hydraPlatforms = stdenv.lib.platforms.linux; # sdl-config times out on darwin
|
|
};
|
|
}
|