From 1ad1d987e33cfa5e798fd0b2948d4c401033c209 Mon Sep 17 00:00:00 2001 From: LluĂ­s Batlle i Rossell Date: Fri, 10 Feb 2012 20:24:13 +0000 Subject: Adding stunt rally. svn path=/nixpkgs/trunk/; revision=32217 --- pkgs/games/stuntrally/default.nix | 20 ++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 22 insertions(+) create mode 100644 pkgs/games/stuntrally/default.nix (limited to 'pkgs') diff --git a/pkgs/games/stuntrally/default.nix b/pkgs/games/stuntrally/default.nix new file mode 100644 index 00000000000..3b835f6e9e5 --- /dev/null +++ b/pkgs/games/stuntrally/default.nix @@ -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+"; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 88a27cad732..1b1457dac1e 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -8040,6 +8040,8 @@ let stardust = callPackage ../games/stardust {}; + stuntrally = callPackage ../games/stuntrally { }; + superTux = callPackage ../games/super-tux { }; superTuxKart = callPackage ../games/super-tux-kart { -- cgit 1.4.1