33 lines
978 B
Nix
33 lines
978 B
Nix
{ fetchurl, stdenv, mesa, freeglut, libX11, plib, openal, freealut, libXrandr, xproto,
|
|
libXext, libSM, libICE, libXi, libXt, libXrender, libXxf86vm, libvorbis,
|
|
libpng, zlib, bash }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "torcs-1.3.5";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/torcs/${name}.tar.bz2";
|
|
sha256 = "170ff98smkkv1sk4nbz9w0alhmmbr32djmgbc08lcfhf0lj2ni38";
|
|
};
|
|
|
|
patchPhase = ''
|
|
sed -i -e s,/bin/bash,`type -P bash`, src/linux/torcs.in
|
|
'';
|
|
|
|
buildInputs = [ mesa freeglut libX11 plib openal freealut libXrandr xproto
|
|
libXext libSM libICE libXi libXt libXrender libXxf86vm libpng zlib libvorbis ];
|
|
|
|
nativeBuildInputs = [ bash ];
|
|
|
|
installTargets = "install datainstall";
|
|
|
|
meta = {
|
|
description = "Car racing game";
|
|
homepage = http://torcs.sourceforge.net/;
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
|
maintainers = with stdenv.lib.maintainers; [viric];
|
|
platforms = stdenv.lib.platforms.linux;
|
|
hydraPlatforms = [];
|
|
};
|
|
}
|