2012-04-22 07:31:22 +02:00
|
|
|
{ stdenv, fetchurl, cmake, SDL, SDL_image, SDL_mixer, SDL_net, SDL_ttf, pango
|
2010-11-13 12:50:43 +01:00
|
|
|
, gettext, zlib, boost, freetype, libpng, pkgconfig, lua, dbus, fontconfig, libtool
|
|
|
|
, fribidi, asciidoc }:
|
2009-03-03 14:27:40 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2011-10-12 21:16:15 +02:00
|
|
|
pname = "wesnoth";
|
2013-02-05 19:40:06 +01:00
|
|
|
version = "1.10.5";
|
2008-02-06 22:18:46 +01:00
|
|
|
|
2011-10-12 21:16:15 +02:00
|
|
|
name = "${pname}-${version}";
|
2008-02-06 22:18:46 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2011-10-12 21:16:15 +02:00
|
|
|
url = "mirror://sourceforge/sourceforge/${pname}/${name}.tar.bz2";
|
2013-02-05 19:40:06 +01:00
|
|
|
sha256 = "1rvlr8c3vzhgd33vzc1hfhiil6d7hc3px8r8p79vmp3kwi3d49zn";
|
2008-02-06 22:18:46 +01:00
|
|
|
};
|
|
|
|
|
2010-11-13 12:50:43 +01:00
|
|
|
buildInputs = [ SDL SDL_image SDL_mixer SDL_net SDL_ttf pango gettext zlib boost fribidi
|
2012-04-22 07:31:22 +02:00
|
|
|
cmake freetype libpng pkgconfig lua dbus fontconfig libtool ];
|
2008-02-06 22:18:46 +01:00
|
|
|
|
2010-11-13 12:50:43 +01:00
|
|
|
# Make the package build with the gcc currently available in Nixpkgs.
|
|
|
|
NIX_CFLAGS_COMPILE = "-Wno-ignored-qualifiers";
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2009-03-03 14:27:40 +01:00
|
|
|
description = "The Battle for Wesnoth, a free, turn-based strategy game with a fantasy theme";
|
2010-11-13 12:50:43 +01:00
|
|
|
longDescription = ''
|
|
|
|
The Battle for Wesnoth is a Free, turn-based tactical strategy
|
|
|
|
game with a high fantasy theme, featuring both single-player, and
|
|
|
|
online/hotseat multiplayer combat. Fight a desperate battle to
|
|
|
|
reclaim the throne of Wesnoth, or take hand in any number of other
|
|
|
|
adventures.
|
|
|
|
'';
|
2011-10-12 21:16:15 +02:00
|
|
|
|
2010-11-13 12:50:43 +01:00
|
|
|
homepage = http://www.wesnoth.org/;
|
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = [ maintainers.kkallio ];
|
|
|
|
platforms = platforms.linux;
|
2008-02-06 22:18:46 +01:00
|
|
|
};
|
2009-03-03 14:27:40 +01:00
|
|
|
}
|