42 lines
1.5 KiB
Nix
42 lines
1.5 KiB
Nix
{ stdenv, fetchurl, cmake, SDL, SDL_image, SDL_mixer, SDL_net, SDL_ttf, pango
|
|
, gettext, zlib, boost, freetype, libpng, pkgconfig, lua, dbus, fontconfig, libtool
|
|
, fribidi, asciidoc, libpthreadstubs, libXdmcp, libxshmfence, libvorbis }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "wesnoth";
|
|
version = "1.12.4";
|
|
|
|
name = "${pname}-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/sourceforge/${pname}/${name}.tar.bz2";
|
|
sha256 = "19qyylylaljhk45lk2ja0xp7cx9iy4hx07l65zkg20a2v9h50lmz";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake pkgconfig ];
|
|
|
|
buildInputs = [ SDL SDL_image SDL_mixer SDL_net SDL_ttf pango gettext zlib
|
|
boost fribidi freetype libpng lua libpthreadstubs libXdmcp
|
|
dbus fontconfig libtool libxshmfence libvorbis ];
|
|
|
|
cmakeFlags = [ "-DENABLE_STRICT_COMPILATION=FALSE" ]; # newer gcc problems http://gna.org/bugs/?21030
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "The Battle for Wesnoth, a free, turn-based strategy game with a fantasy theme";
|
|
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.
|
|
'';
|
|
|
|
homepage = http://www.wesnoth.org/;
|
|
license = licenses.gpl2;
|
|
maintainers = [ maintainers.kkallio ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|