Adding Speed Dreams (a TORCS fork)

svn path=/nixpkgs/trunk/; revision=26673
This commit is contained in:
Michael Raskin 2011-04-04 05:01:53 +00:00
parent 2a07e68e9c
commit e035fb4cac
2 changed files with 40 additions and 0 deletions

View File

@ -0,0 +1,34 @@
{ fetchurl, stdenv, mesa, freeglut, libX11, plib, openal, freealut, libXrandr, xproto,
libXext, libSM, libICE, libXi, libXt, libXrender, libXxf86vm,
libpng, zlib, bash, p7zip, SDL, enet, libjpeg, cmake}:
stdenv.mkDerivation rec {
version = "2.0.0-a3-r3412";
name = "speed-dreams-${version}";
src = fetchurl {
url = "mirror://sourceforge/speed-dreams/2.0.0/${name}-src.tar.7z";
sha256 = "0hn5fgn90wmd1xha1la133harx47qc647f4zj8hfdvd7wb3kpjab";
};
unpackPhase = ''
7z e -so ${src} | tar -x
cd */
'';
buildInputs = [ mesa freeglut libX11 plib openal freealut libXrandr xproto
libXext libSM libICE libXi libXt libXrender libXxf86vm libpng zlib bash
p7zip SDL enet libjpeg cmake];
installTargets = "install";
dontUseCmakeBuildDir=true;
meta = {
description = "Car racing game - TORCS fork with more experimental approach";
homepage = http://speed-dreams.sourceforge.net/;
license = "GPLv2+";
maintainers = with stdenv.lib.maintainers; [viric raskin];
platforms = with stdenv.lib.platforms; linux;
};
}

View File

@ -7276,6 +7276,12 @@ let
tremulous = callPackage ../games/tremulous { };
speed_dreams = callPackage ../games/speed-dreams {
# Torcs wants to make shared libraries linked with plib libraries (it provides static).
# i686 is the only platform I know than can do that linking without plib built with -fPIC
plib = plib.override { enablePIC = if stdenv.isi686 then false else true; };
};
torcs = callPackage ../games/torcs {
# Torcs wants to make shared libraries linked with plib libraries (it provides static).
# i686 is the only platform I know than can do that linking without plib built with -fPIC