2010-08-22 15:18:58 +01:00
|
|
|
{ fetchurl, stdenv, mesa, freeglut, libX11, plib, openal, freealut, libXrandr, xproto,
|
2012-01-26 08:36:23 +00:00
|
|
|
libXext, libSM, libICE, libXi, libXt, libXrender, libXxf86vm, libvorbis,
|
2016-09-30 12:45:04 +01:00
|
|
|
libpng, zlib, bash, makeWrapper }:
|
2010-08-22 15:18:58 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2016-09-30 12:45:04 +01:00
|
|
|
name = "torcs-1.3.7";
|
2010-08-22 15:18:58 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/torcs/${name}.tar.bz2";
|
2016-09-30 12:45:04 +01:00
|
|
|
sha256 = "0kdq0sc7dsfzlr0ggbxggcbkivc6yp30nqwjwcaxg9295s3b06wa";
|
2010-08-22 15:18:58 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
patchPhase = ''
|
|
|
|
sed -i -e s,/bin/bash,`type -P bash`, src/linux/torcs.in
|
|
|
|
'';
|
|
|
|
|
|
|
|
buildInputs = [ mesa freeglut libX11 plib openal freealut libXrandr xproto
|
2016-09-30 12:45:04 +01:00
|
|
|
libXext libSM libICE libXi libXt libXrender libXxf86vm libpng zlib libvorbis makeWrapper ];
|
2012-01-26 08:36:23 +00:00
|
|
|
|
2012-12-28 18:20:09 +00:00
|
|
|
nativeBuildInputs = [ bash ];
|
2010-08-22 15:18:58 +01:00
|
|
|
|
|
|
|
installTargets = "install datainstall";
|
|
|
|
|
2016-02-26 17:38:15 +00:00
|
|
|
hardeningDisable = [ "format" ];
|
2016-02-21 10:53:04 +00:00
|
|
|
|
2016-09-30 12:45:04 +01:00
|
|
|
postInstall = ''
|
|
|
|
wrapProgram $out/bin/torcs \
|
|
|
|
--prefix LD_LIBRARY_PATH : ${mesa}/lib
|
|
|
|
'';
|
|
|
|
|
2010-08-22 15:18:58 +01:00
|
|
|
meta = {
|
|
|
|
description = "Car racing game";
|
|
|
|
homepage = http://torcs.sourceforge.net/;
|
2014-06-19 05:19:00 +01:00
|
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
2010-08-22 15:18:58 +01:00
|
|
|
maintainers = with stdenv.lib.maintainers; [viric];
|
2013-11-04 23:04:36 +00:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
|
|
|
hydraPlatforms = [];
|
2010-08-22 15:18:58 +01:00
|
|
|
};
|
|
|
|
}
|