summary refs log tree commit diff
path: root/pkgs/games/stuntrally
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2012-02-10 20:24:13 +0000
committerLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2012-02-10 20:24:13 +0000
commit1ad1d987e33cfa5e798fd0b2948d4c401033c209 (patch)
treea63703101247d33c465b4613c4dbe6dc985cdf5d /pkgs/games/stuntrally
parent761785c4ab0728b677db03cc9988538dd81ae51e (diff)
downloadnixpkgs-1ad1d987e33cfa5e798fd0b2948d4c401033c209.tar
nixpkgs-1ad1d987e33cfa5e798fd0b2948d4c401033c209.tar.gz
nixpkgs-1ad1d987e33cfa5e798fd0b2948d4c401033c209.tar.bz2
nixpkgs-1ad1d987e33cfa5e798fd0b2948d4c401033c209.tar.lz
nixpkgs-1ad1d987e33cfa5e798fd0b2948d4c401033c209.tar.xz
nixpkgs-1ad1d987e33cfa5e798fd0b2948d4c401033c209.tar.zst
nixpkgs-1ad1d987e33cfa5e798fd0b2948d4c401033c209.zip
Adding stunt rally.
svn path=/nixpkgs/trunk/; revision=32217
Diffstat (limited to 'pkgs/games/stuntrally')
-rw-r--r--pkgs/games/stuntrally/default.nix20
1 files changed, 20 insertions, 0 deletions
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+";
+  };
+}