forked from mirrors/nixpkgs
Super Tux Kart, a free kart racing game.
svn path=/nixpkgs/trunk/; revision=13052
This commit is contained in:
parent
bf54e7bc25
commit
3419c0a970
29
pkgs/games/super-tux-kart/default.nix
Normal file
29
pkgs/games/super-tux-kart/default.nix
Normal 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+";
|
||||
};
|
||||
}
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue