3
0
Fork 0
forked from mirrors/nixpkgs

Adding Ultimate Stunts, a racing game.

svn path=/nixpkgs/trunk/; revision=19088
This commit is contained in:
Lluís Batlle i Rossell 2009-12-23 22:28:50 +00:00
parent be1108423e
commit f4e1fed894
2 changed files with 23 additions and 0 deletions

View file

@ -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;
};
}

View file

@ -7980,6 +7980,10 @@ let
python24 = python;
};*/
ultimatestunts = import ../games/ultimatestunts {
inherit stdenv fetchurl SDL mesa SDL_image freealut;
};
ut2004demo = import ../games/ut2004demo {
inherit fetchurl stdenv xlibs mesa;
};