summary refs log tree commit diff
path: root/pkgs/games/torcs
diff options
context:
space:
mode:
authorYury G. Kudryashov <urkud.urkud@gmail.com>2012-01-26 08:36:23 +0000
committerYury G. Kudryashov <urkud.urkud@gmail.com>2012-01-26 08:36:23 +0000
commit72116657d48f8b0165da486cad5509b4a5beb34f (patch)
treed67dc1b2c9d95108bab29515a757344d81cd83b1 /pkgs/games/torcs
parenteb59b98c26e3d21234120806e1a3d4ae845281d5 (diff)
downloadnixpkgs-72116657d48f8b0165da486cad5509b4a5beb34f.tar
nixpkgs-72116657d48f8b0165da486cad5509b4a5beb34f.tar.gz
nixpkgs-72116657d48f8b0165da486cad5509b4a5beb34f.tar.bz2
nixpkgs-72116657d48f8b0165da486cad5509b4a5beb34f.tar.lz
nixpkgs-72116657d48f8b0165da486cad5509b4a5beb34f.tar.xz
nixpkgs-72116657d48f8b0165da486cad5509b4a5beb34f.tar.zst
nixpkgs-72116657d48f8b0165da486cad5509b4a5beb34f.zip
torcs-1.3.2, builds with libpng-1.5
svn path=/nixpkgs/trunk/; revision=31844
Diffstat (limited to 'pkgs/games/torcs')
-rw-r--r--pkgs/games/torcs/default.nix10
1 files changed, 6 insertions, 4 deletions
diff --git a/pkgs/games/torcs/default.nix b/pkgs/games/torcs/default.nix
index 7f7c95d3cd1..cf740def511 100644
--- a/pkgs/games/torcs/default.nix
+++ b/pkgs/games/torcs/default.nix
@@ -1,13 +1,13 @@
 { fetchurl, stdenv, mesa, freeglut, libX11, plib, openal, freealut, libXrandr, xproto,
-libXext, libSM, libICE, libXi, libXt, libXrender, libXxf86vm,
+libXext, libSM, libICE, libXi, libXt, libXrender, libXxf86vm, libvorbis,
 libpng, zlib, bash }:
 
 stdenv.mkDerivation rec {
-  name = "torcs-1.3.1";
+  name = "torcs-1.3.2";
 
   src = fetchurl {
     url = "mirror://sourceforge/torcs/${name}.tar.bz2";
-    sha256 = "1zai7nrx93pcv24r3fkr08831szj7vz3a6xy8fihlv6wvfnpn6wh";
+    sha256 = "0171ixhnd9cs8jkwa5awrxklfgyykcbc9m8270b8cw30lsx7qhp1";
   };
 
   patchPhase = ''
@@ -15,7 +15,9 @@ stdenv.mkDerivation rec {
   '';
 
   buildInputs = [ mesa freeglut libX11 plib openal freealut libXrandr xproto
-    libXext libSM libICE libXi libXt libXrender libXxf86vm libpng zlib bash ];
+    libXext libSM libICE libXi libXt libXrender libXxf86vm libpng zlib libvorbis ];
+
+  buildNativeInputs = [ bash ];
 
   installTargets = "install datainstall";