summary refs log tree commit diff
path: root/pkgs/games
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2009-12-23 22:28:50 +0000
committerLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2009-12-23 22:28:50 +0000
commitf4e1fed89442531d30d84af16c78570ea6d60267 (patch)
tree1f8fbbef34b53d4e7cf6a63a45388bb95cac4d0a /pkgs/games
parentbe1108423e2f4e3402935a05ebcc3cc5bbbaef4f (diff)
downloadnixlib-f4e1fed89442531d30d84af16c78570ea6d60267.tar
nixlib-f4e1fed89442531d30d84af16c78570ea6d60267.tar.gz
nixlib-f4e1fed89442531d30d84af16c78570ea6d60267.tar.bz2
nixlib-f4e1fed89442531d30d84af16c78570ea6d60267.tar.lz
nixlib-f4e1fed89442531d30d84af16c78570ea6d60267.tar.xz
nixlib-f4e1fed89442531d30d84af16c78570ea6d60267.tar.zst
nixlib-f4e1fed89442531d30d84af16c78570ea6d60267.zip
Adding Ultimate Stunts, a racing game.
svn path=/nixpkgs/trunk/; revision=19088
Diffstat (limited to 'pkgs/games')
-rw-r--r--pkgs/games/ultimatestunts/default.nix19
1 files changed, 19 insertions, 0 deletions
diff --git a/pkgs/games/ultimatestunts/default.nix b/pkgs/games/ultimatestunts/default.nix
new file mode 100644
index 000000000000..247f39b18d5e
--- /dev/null
+++ b/pkgs/games/ultimatestunts/default.nix
@@ -0,0 +1,19 @@
+{stdenv, fetchurl, SDL, mesa, SDL_image, freealut}:
+
+stdenv.mkDerivation rec {
+  name = "ultimate-stunts-0.7.5.1";
+  src = fetchurl {
+    url = mirror://sourceforge/ultimatestunts/ultimatestunts-srcdata-0751.tar.gz;
+    sha256 = "1s4xkaw0i6vqkjhi63plmrbrhhr408i3pv36qkpchpiiiw5bb7lv";
+  };
+
+  buildInputs = [ SDL mesa SDL_image freealut ];
+
+  meta = {
+    homepage = http://www.ultimatestunts.nl/;
+    description = "Remake of the popular racing DOS-game Stunts";
+    license = "GPLv2+";
+    maintainers = with stdenv.lib.maintainers; [viric];
+    platforms = with stdenv.lib.platforms; linux;
+  };
+}