2021-01-16 21:49:22 -08:00
|
|
|
{ lib, stdenv, fetchFromGitHub, cmake, pkg-config, SDL2, SDL2_image, SDL2_mixer, SDL2_net, SDL2_ttf
|
2018-07-20 17:44:44 -07:00
|
|
|
, pango, gettext, boost, libvorbis, fribidi, dbus, libpng, pcre, openssl, icu
|
2018-05-29 18:19:45 -07:00
|
|
|
, Cocoa, Foundation
|
2018-05-08 06:03:52 -07:00
|
|
|
, enableTools ? false
|
2016-05-30 12:15:36 -07:00
|
|
|
}:
|
2009-03-03 05:27:40 -08:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2011-10-12 12:16:15 -07:00
|
|
|
pname = "wesnoth";
|
2021-04-07 11:44:20 -07:00
|
|
|
version = "1.14.16";
|
2008-02-06 13:18:46 -08:00
|
|
|
|
2020-05-24 09:15:15 -07:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
rev = version;
|
|
|
|
owner = "wesnoth";
|
|
|
|
repo = "wesnoth";
|
2021-04-07 11:44:20 -07:00
|
|
|
sha256 = "sha256-QMz7atxol18r//UNb6+H6xAAEQdR4hAN8UW0KeGSH1g=";
|
2008-02-06 13:18:46 -08:00
|
|
|
};
|
|
|
|
|
2021-01-16 21:49:22 -08:00
|
|
|
nativeBuildInputs = [ cmake pkg-config ];
|
2015-08-29 19:31:44 -07:00
|
|
|
|
2018-05-08 06:03:52 -07:00
|
|
|
buildInputs = [ SDL2 SDL2_image SDL2_mixer SDL2_net SDL2_ttf pango gettext boost
|
2018-05-29 18:19:45 -07:00
|
|
|
libvorbis fribidi dbus libpng pcre openssl icu ]
|
2021-01-14 20:31:39 -08:00
|
|
|
++ lib.optionals stdenv.isDarwin [ Cocoa Foundation];
|
2008-02-06 13:18:46 -08:00
|
|
|
|
2016-05-30 12:15:36 -07:00
|
|
|
cmakeFlags = [ "-DENABLE_TOOLS=${if enableTools then "ON" else "OFF"}" ];
|
2013-08-27 03:06:47 -07:00
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2009-03-03 05:27:40 -08:00
|
|
|
description = "The Battle for Wesnoth, a free, turn-based strategy game with a fantasy theme";
|
2010-11-13 03:50:43 -08: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 12:16:15 -07:00
|
|
|
|
2020-05-24 09:15:15 -07:00
|
|
|
homepage = "https://www.wesnoth.org/";
|
2010-11-13 03:50:43 -08:00
|
|
|
license = licenses.gpl2;
|
2018-05-08 06:03:52 -07:00
|
|
|
maintainers = with maintainers; [ abbradar ];
|
2018-05-29 18:19:45 -07:00
|
|
|
platforms = platforms.unix;
|
2008-02-06 13:18:46 -08:00
|
|
|
};
|
2009-03-03 05:27:40 -08:00
|
|
|
}
|