nixpkgs/pkgs/games/lgames/lbreakout2/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

37 lines
713 B
Nix
Raw Normal View History

2022-04-22 09:05:23 -04:00
{ lib
, stdenv
, fetchurl
, SDL
, SDL_mixer
, libintl
, libpng
, zlib
}:
2017-06-09 03:21:17 -04:00
stdenv.mkDerivation rec {
pname = "lbreakout2";
2017-06-09 03:21:17 -04:00
version = "2.6.5";
src = fetchurl {
url = "mirror://sourceforge/lgames/${pname}-${version}.tar.gz";
2017-06-09 03:21:17 -04:00
sha256 = "0vwdlyvh7c4y80q5vp7fyfpzbqk9lq3w8pvavi139njkalbxc14i";
};
2022-04-22 09:05:23 -04:00
buildInputs = [
SDL
SDL_mixer
libintl
libpng
zlib
];
meta = with lib; {
homepage = "http://lgames.sourceforge.net/LBreakout2/";
2022-04-22 09:05:23 -04:00
description = "Breakout clone from the LGames series";
license = licenses.gpl2Plus;
2017-06-09 03:21:17 -04:00
maintainers = [ maintainers.ciil ];
2017-06-10 03:43:45 -04:00
platforms = platforms.unix;
2021-01-14 23:31:39 -05:00
hydraPlatforms = lib.platforms.linux; # sdl-config times out on darwin
2017-06-09 03:21:17 -04:00
};
}