nixpkgs/pkgs/games/super-tux/default.nix
Bjørn Forsman 083d0890f5 More description fixes
* Remove package name
* Start with upper case letter
* Remove trailing period

Also reword some descriptions and move some long descriptions to
longDescription.

I'm not touching generated packages.
2013-10-06 12:01:38 +02:00

29 lines
637 B
Nix

{ fetchurl, stdenv, SDL, SDL_image, SDL_mixer, curl, gettext, libogg, libvorbis, mesa, openal }:
let
version = "0.1.3";
in
stdenv.mkDerivation {
name = "supertux-${version}";
src = fetchurl {
url = "http://download.berlios.de/supertux/supertux-${version}.tar.bz2";
sha256 = "15xdq99jy4hayr96jpqcp15rbr9cs5iamjirafajcrkpa61mi4h0";
};
buildInputs = [ SDL SDL_image SDL_mixer curl gettext libogg libvorbis mesa openal ];
patches = [ ./g++4.patch ];
meta = {
description = "Classic 2D jump'n run sidescroller game";
homepage = http://supertux.lethargik.org/index.html;
license = "GPLv2";
};
}