Super Tux Kart, a free kart racing game.

svn path=/nixpkgs/trunk/; revision=13052
This commit is contained in:
Ludovic Courtès 2008-10-12 14:28:51 +00:00
parent bf54e7bc25
commit 3419c0a970
2 changed files with 34 additions and 0 deletions

View file

@ -0,0 +1,29 @@
{ fetchurl, stdenv, plib, SDL, openal, freealut, mesa
, libvorbis, libogg, gettext }:
stdenv.mkDerivation rec {
name = "supertuxkart-0.5";
src = fetchurl {
url = "mirror://sourceforge/supertuxkart/${name}.tar.bz2";
sha256 = "1c9gdfcsygsflbrsar38p6gm17kxnna70s9mw4bsixyg45aghii9";
};
buildInputs = [
plib SDL openal freealut mesa libvorbis libogg gettext
];
meta = {
description = "SuperTuxKart is a Free 3D kart racing game";
longDescription = ''
SuperTuxKart is a Free 3D kart racing game, with many tracks,
characters and items for you to try, similar in spirit to Mario
Kart.
'';
homepage = http://supertuxkart.sourceforge.net/;
license = "GPLv2+";
};
}

View file

@ -7304,6 +7304,11 @@ let
inherit (xlibs) libXt libX11 libXmu libXi libXext;
};
superTuxKart = import ../games/super-tux-kart {
inherit fetchurl stdenv plib SDL openal freealut mesa
libvorbis libogg gettext;
};
/*tpm = import ../games/thePenguinMachine {
inherit stdenv fetchurl pil pygame SDL;
python24 = python;