2013-10-20 17:08:15 +01:00
|
|
|
{ stdenv, fetchurl, zlib, bzip2, pkgconfig, curl, lzma, gettext
|
2012-02-13 19:34:39 +00:00
|
|
|
, sdlClient ? true, SDL, SDL_mixer, SDL_image, SDL_ttf, SDL_gfx, freetype
|
|
|
|
, gtkClient ? false, gtk
|
|
|
|
, server ? true, readline }:
|
2011-08-20 15:30:16 +01:00
|
|
|
|
2012-02-13 19:34:39 +00:00
|
|
|
let
|
|
|
|
inherit (stdenv.lib) optional optionals;
|
|
|
|
client = sdlClient || gtkClient;
|
|
|
|
in
|
2011-08-20 15:30:16 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2013-10-20 17:08:15 +01:00
|
|
|
name = "freeciv-2.4.0";
|
2011-08-20 15:30:16 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2012-02-13 19:34:35 +00:00
|
|
|
url = "mirror://sourceforge/freeciv/${name}.tar.bz2";
|
2013-10-20 17:08:15 +01:00
|
|
|
sha256 = "1bc01pyihsrby6w95n49gi90ggp40dyxsy4kmlmwcakxfxprwakv";
|
2011-08-20 15:30:16 +01:00
|
|
|
};
|
|
|
|
|
2012-12-28 18:20:09 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2012-02-13 19:34:39 +00:00
|
|
|
|
2013-10-20 17:08:15 +01:00
|
|
|
buildInputs = [ zlib bzip2 curl lzma gettext ]
|
2012-02-13 19:34:39 +00:00
|
|
|
++ optionals sdlClient [ SDL SDL_mixer SDL_image SDL_ttf SDL_gfx freetype ]
|
|
|
|
++ optional gtkClient gtk
|
|
|
|
++ optional server readline;
|
2011-08-20 15:30:16 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2013-10-06 10:49:53 +01:00
|
|
|
description = "Multiplayer (or single player), turn-based strategy game";
|
2011-08-20 15:30:16 +01:00
|
|
|
|
|
|
|
longDescription = ''
|
|
|
|
Freeciv is a Free and Open Source empire-building strategy game
|
|
|
|
inspired by the history of human civilization. The game commences in
|
|
|
|
prehistory and your mission is to lead your tribe from the stone age
|
|
|
|
to the space age...
|
|
|
|
'';
|
|
|
|
|
|
|
|
homepage = http://freeciv.wikia.com/;
|
|
|
|
license = licenses.gpl2;
|
|
|
|
|
|
|
|
maintainers = with maintainers; [ pierron ];
|
2011-08-21 16:36:25 +01:00
|
|
|
platforms = with platforms; linux;
|
2011-08-20 15:30:16 +01:00
|
|
|
};
|
|
|
|
}
|