Add GNU FreeDink.
svn path=/nixpkgs/trunk/; revision=21555
This commit is contained in:
parent
61ec7e828d
commit
17a3bcd4d6
29
pkgs/games/freedink/default.nix
Normal file
29
pkgs/games/freedink/default.nix
Normal 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;
|
||||||
|
};
|
||||||
|
}
|
@ -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 {
|
fsg = import ../games/fsg {
|
||||||
inherit stdenv fetchurl pkgconfig mesa;
|
inherit stdenv fetchurl pkgconfig mesa;
|
||||||
inherit (gtkLibs) glib gtk;
|
inherit (gtkLibs) glib gtk;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user