Adding stunt rally.
svn path=/nixpkgs/trunk/; revision=32217
This commit is contained in:
parent
761785c4ab
commit
1ad1d987e3
|
@ -0,0 +1,20 @@
|
||||||
|
{ fetchurl, stdenv, cmake, boost, ogre, myguiSvn, ois, SDL, libvorbis, pkgconfig }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "stunt-rally-1.4";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = mirror://sourceforge/stuntrally/StuntRally-1.4-sources.tar.bz2;
|
||||||
|
sha256 = "1am5af4l1qliyrq1183sqvwzqwcjx0v6gkzsxhfmk6ygp7yhw7kq";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ cmake boost ogre myguiSvn ois SDL libvorbis pkgconfig ];
|
||||||
|
|
||||||
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Stunt Rally game with Track Editor, based on VDrift and OGRE";
|
||||||
|
homepage = http://code.google.com/p/vdrift-ogre/;
|
||||||
|
license = "GPLv3+";
|
||||||
|
};
|
||||||
|
}
|
|
@ -8040,6 +8040,8 @@ let
|
||||||
|
|
||||||
stardust = callPackage ../games/stardust {};
|
stardust = callPackage ../games/stardust {};
|
||||||
|
|
||||||
|
stuntrally = callPackage ../games/stuntrally { };
|
||||||
|
|
||||||
superTux = callPackage ../games/super-tux { };
|
superTux = callPackage ../games/super-tux { };
|
||||||
|
|
||||||
superTuxKart = callPackage ../games/super-tux-kart {
|
superTuxKart = callPackage ../games/super-tux-kart {
|
||||||
|
|
Loading…
Reference in New Issue