Author: viric
Date: Fri Feb 10 20:24:13 2012
New Revision: 32217
URL: https://nixos.org/websvn/nix/?rev=32217&sc=1

Log:
Adding stunt rally.

Added:
   nixpkgs/trunk/pkgs/games/stuntrally/
   nixpkgs/trunk/pkgs/games/stuntrally/default.nix
Modified:
   nixpkgs/trunk/pkgs/top-level/all-packages.nix

Added: nixpkgs/trunk/pkgs/games/stuntrally/default.nix
==============================================================================
--- /dev/null   00:00:00 1970   (empty, because file is newly added)
+++ nixpkgs/trunk/pkgs/games/stuntrally/default.nix     Fri Feb 10 20:24:13 
2012        (r32217)
@@ -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+";
+  };
+}

Modified: nixpkgs/trunk/pkgs/top-level/all-packages.nix
==============================================================================
--- nixpkgs/trunk/pkgs/top-level/all-packages.nix       Fri Feb 10 20:01:09 
2012        (r32216)
+++ nixpkgs/trunk/pkgs/top-level/all-packages.nix       Fri Feb 10 20:24:13 
2012        (r32217)
@@ -8040,6 +8040,8 @@
 
   stardust = callPackage ../games/stardust {};
 
+  stuntrally = callPackage ../games/stuntrally { };
+
   superTux = callPackage ../games/super-tux { };
 
   superTuxKart = callPackage ../games/super-tux-kart {
_______________________________________________
nix-commits mailing list
nix-comm...@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-commits

Reply via email to