summary refs log tree commit diff
path: root/pkgs/games/freedink/default.nix
blob: f41063272ce167a335f9eec5b402495f8aed6be5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{ stdenv, fetchurl, SDL, SDL_mixer, SDL_image, SDL_ttf, SDL_gfx
, pkgconfig, fontconfig, libzip, zip, zlib }:

stdenv.mkDerivation rec {
  name = "freedink-1.08.20101114";

  src = fetchurl {
    url = "mirror://gnu/freedink/${name}.tar.gz";
    sha256 = "0h3i7p7awk5flymh22xaazm2r56hv86z2il2gmbzrr6xh434zffa";
  };

  buildInputs = [ SDL SDL_mixer SDL_image SDL_ttf SDL_gfx pkgconfig fontconfig libzip zip zlib] ;

  meta = {
    description = "GNU FreeDink, a free, portable and enhanced version of the Dink Smallwood game engine. ";

    longDescription =
      '' GNU FreeDink is a new and portable version of the Dink Smallwood
	 game engine, which runs the original game as well as its D-Mods,
	 with close compatibility, under multiple platforms.
       '';

    homepage = http://www.freedink.org/;
    license = "GPLv3+";

    maintainers = [ stdenv.lib.maintainers.bjg ];
    platforms = stdenv.lib.platforms.all;
  };
}