summary refs log tree commit diff
path: root/pkgs/games/lgames/lbreakout2/default.nix
blob: 818cd31fa59a09fb71eae9685d422c5a6185da4e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ lib, stdenv, fetchurl, SDL, SDL_mixer, zlib, libpng, libintl }:

stdenv.mkDerivation rec {
  pname = "lbreakout2";
  version = "2.6.5";
  buildInputs = [ SDL SDL_mixer zlib libpng libintl ];

  src = fetchurl {
    url = "mirror://sourceforge/lgames/${pname}-${version}.tar.gz";
    sha256 = "0vwdlyvh7c4y80q5vp7fyfpzbqk9lq3w8pvavi139njkalbxc14i";
  };

  meta = with lib; {
    description = "Breakout clone from the LGames series";
    homepage = "http://lgames.sourceforge.net/LBreakout2/";
    license = licenses.gpl2;
    maintainers = [ maintainers.ciil ];
    platforms = platforms.unix;
    hydraPlatforms = lib.platforms.linux; # sdl-config times out on darwin
  };
}