forked from mirrors/nixpkgs
Adding Ultimate Stunts, a racing game.
svn path=/nixpkgs/trunk/; revision=19088
This commit is contained in:
parent
be1108423e
commit
f4e1fed894
19
pkgs/games/ultimatestunts/default.nix
Normal file
19
pkgs/games/ultimatestunts/default.nix
Normal 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;
|
||||
};
|
||||
}
|
|
@ -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;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue