Add new game: openttd.
svn path=/nixpkgs/trunk/; revision=11553
This commit is contained in:
parent
4485ebdea6
commit
5efc5fe707
22
pkgs/games/openttd/default.nix
Normal file
22
pkgs/games/openttd/default.nix
Normal 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";
|
||||||
|
};
|
||||||
|
}
|
@ -5958,6 +5958,11 @@ let pkgs = rec {
|
|||||||
inherit fetchurl stdenv SDL openal freealut zlib libpng python;
|
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 {
|
quake3demo = import ../games/quake3/wrapper {
|
||||||
name = "quake3-demo";
|
name = "quake3-demo";
|
||||||
description = "Demo of Quake 3 Arena, a classic first-person shooter";
|
description = "Demo of Quake 3 Arena, a classic first-person shooter";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user