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