summary refs log tree commit diff
path: root/pkgs/games/openttd
diff options
context:
space:
mode:
authorMoritz Ulrich <moritz@tarn-vedra.de>2013-09-29 00:29:26 +0200
committerMoritz Ulrich <moritz@tarn-vedra.de>2013-09-29 00:29:26 +0200
commit296dbc8279c96da93ccbbbf917b8599ee88fcc1f (patch)
tree178d8ce06114fd06145fa46be3e266f52ef72744 /pkgs/games/openttd
parentfd67fcb31425fa1605893b3e7373e6afa18c3430 (diff)
downloadnixpkgs-296dbc8279c96da93ccbbbf917b8599ee88fcc1f.tar
nixpkgs-296dbc8279c96da93ccbbbf917b8599ee88fcc1f.tar.gz
nixpkgs-296dbc8279c96da93ccbbbf917b8599ee88fcc1f.tar.bz2
nixpkgs-296dbc8279c96da93ccbbbf917b8599ee88fcc1f.tar.lz
nixpkgs-296dbc8279c96da93ccbbbf917b8599ee88fcc1f.tar.xz
nixpkgs-296dbc8279c96da93ccbbbf917b8599ee88fcc1f.tar.zst
nixpkgs-296dbc8279c96da93ccbbbf917b8599ee88fcc1f.zip
OpenTTD: 1.3.2 & some coding-style fixes.
Signed-off-by: Moritz Ulrich <moritz@tarn-vedra.de>
Diffstat (limited to 'pkgs/games/openttd')
-rw-r--r--pkgs/games/openttd/default.nix25
1 files changed, 13 insertions, 12 deletions
diff --git a/pkgs/games/openttd/default.nix b/pkgs/games/openttd/default.nix
index 616adf00224..bf9f6d1060e 100644
--- a/pkgs/games/openttd/default.nix
+++ b/pkgs/games/openttd/default.nix
@@ -1,21 +1,21 @@
-{stdenv, fetchurl, pkgconfig, SDL, libpng, zlib, xz, freetype, fontconfig}:
+{ stdenv, fetchurl, pkgconfig, SDL, libpng, zlib, xz, freetype, fontconfig }:
 
 stdenv.mkDerivation rec {
   name = "openttd-${version}";
-  version = "1.2.2";
+  version = "1.3.2";
 
   src = fetchurl {
     url = "http://binaries.openttd.org/releases/${version}/${name}-source.tar.xz";
-    sha256 = "158znfx389bhs9gd2hadnbc2a32z4ma1vz8704cmw9yh0fmhbcap";
+    sha256 = "02r7xfq9a5x1y2wpdhqyczaj48z0qan33hs4i2liahsg1k6w1vzn";
   };
 
-  buildInputs = [SDL libpng pkgconfig xz zlib freetype fontconfig];
+  buildInputs = [ SDL libpng pkgconfig xz zlib freetype fontconfig ];
   prefixKey = "--prefix-dir=";
 
-  configureFlags = ''
-    --with-zlib=${zlib}/lib/libz.a 
-    --without-liblzo2
-  '';
+  configureFlags = [
+    "--with-zlib=${zlib}/lib/libz.a"
+    "--without-liblzo2"
+  ];
 
   makeFlags = "INSTALL_PERSONAL_DIR=";
 
@@ -24,11 +24,11 @@ stdenv.mkDerivation rec {
   '';
 
   meta = {
-    description = ''OpenTTD is an open source clone of the Microprose game "Transport Tycoon Deluxe".'';
+    description = ''OpenTTD is an open source clone of the Microprose game "Transport Tycoon Deluxe"'';
     longDescription = ''
       OpenTTD is a transportation economics simulator. In single player mode,
-      players controll a transportation business, and use rail, road, sea, and air
-      transport to move goods and people around the simulated world. 
+      players control a transportation business, and use rail, road, sea, and air
+      transport to move goods and people around the simulated world.
 
       In multiplayer networked mode, players may:
         - play competitively as different businesses
@@ -37,6 +37,7 @@ stdenv.mkDerivation rec {
     '';
     homepage = http://www.openttd.org/;
     license = "GPLv2";
-    maintainers = with stdenv.lib.maintainers; [ jcumming ];
+    platforms = stdenv.lib.platforms.unix;
+    maintainers = with stdenv.lib.maintainers; [ jcumming the-kenny ];
   };
 }