Add GNU FreeDink.

svn path=/nixpkgs/trunk/; revision=21555
This commit is contained in:
Ludovic Courtès 2010-05-02 09:27:51 +00:00
parent 61ec7e828d
commit 17a3bcd4d6
2 changed files with 34 additions and 0 deletions

View file

@ -0,0 +1,29 @@
{ stdenv, fetchurl, SDL, SDL_mixer, SDL_image, SDL_ttf, SDL_gfx
, pkgconfig, fontconfig, libzip, zip, zlib }:
stdenv.mkDerivation rec {
name = "freedink-1.08.20100420";
src = fetchurl {
url = "mirror://gnu/freedink/${name}.tar.gz";
sha256 = "0jw0690k7wgsga74nd8m1c3k34xmzgav6z0hhpx507krw2mkbm90";
};
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;
};
}

View file

@ -8705,6 +8705,11 @@ let
});
*/
freedink = import ../games/freedink {
inherit stdenv fetchurl SDL SDL_mixer SDL_image SDL_ttf SDL_gfx
pkgconfig fontconfig libzip zip zlib;
};
fsg = import ../games/fsg {
inherit stdenv fetchurl pkgconfig mesa;
inherit (gtkLibs) glib gtk;