about summary refs log tree commit diff
path: root/pkgs/games/super-tux-kart/default.nix
blob: b2552bd9dc88671e5cd25fc49403ae18542b846e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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+";
  };
}