Add new game: openttd.

svn path=/nixpkgs/trunk/; revision=11553
This commit is contained in:
Nicolas Pierron 2008-04-10 22:12:20 +00:00
parent 4485ebdea6
commit 5efc5fe707
2 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,22 @@
{stdenv, fetchurl, SDL, libpng, zlib}:
stdenv.mkDerivation rec {
name = "openttd-${version}";
version = "0.6.0";
src = fetchurl {
url = "mirror://sf/openttd/${name}-source.tar.bz2";
md5 = "dcf63687c73ff56887049fedaf6c6019";
};
buildInputs = [SDL libpng];
prefixKey = "--prefix-dir=";
configureFlags = "--with-zlib=${zlib}/lib/libz.a";
makeFlags = "INSTALL_PERSONAL_DIR=";
meta = {
description = ''OpenTTD is an open source clone of the Microprose game "Transport Tycoon Deluxe".'';
homepage = http://www.openttd.org/;
license = "GPLv2";
};
}

View File

@ -5958,6 +5958,11 @@ let pkgs = rec {
inherit fetchurl stdenv SDL openal freealut zlib libpng python;
};
openttd = import ../games/openttd {
inherit fetchurl stdenv SDL libpng;
zlib = zlibStatic;
};
quake3demo = import ../games/quake3/wrapper {
name = "quake3-demo";
description = "Demo of Quake 3 Arena, a classic first-person shooter";