2014-02-09 23:52:59 +01:00
|
|
|
{ stdenv, fetchurl, cmake, lzma, boost, libdevil, zlib, p7zip
|
2012-03-27 13:07:53 +02:00
|
|
|
, openal, libvorbis, glew, freetype, xlibs, SDL, mesa, binutils
|
2014-02-09 23:52:59 +01:00
|
|
|
, asciidoc, libxslt, docbook_xsl, docbook_xsl_ns, curl, makeWrapper
|
2010-11-13 08:47:04 +01:00
|
|
|
, jdk ? null, python ? null
|
|
|
|
, withAI ? true # support for AI Interfaces and Skirmish AIs
|
|
|
|
}:
|
2014-02-08 18:16:28 +01:00
|
|
|
|
2010-11-13 08:47:04 +01:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
|
|
|
|
name = "spring-${version}";
|
2014-02-05 15:24:56 +01:00
|
|
|
version = "96.0";
|
2010-11-13 08:47:04 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2013-03-29 16:43:38 +01:00
|
|
|
url = "mirror://sourceforge/springrts/spring_${version}_src.tar.lzma";
|
2014-02-05 15:24:56 +01:00
|
|
|
sha256 = "1axyqkxgv3a0zg0afzlc7j3lyi412zd551j317ci41yqz2qzf0px";
|
2010-11-13 08:47:04 +01:00
|
|
|
};
|
|
|
|
|
2014-02-08 18:09:27 +01:00
|
|
|
cmakeFlags = ["-DCMAKE_BUILD_WITH_INSTALL_RPATH:BOOL=ON"
|
|
|
|
"-DCMAKE_INSTALL_RPATH_USE_LINK_PATH:BOOL=ON"
|
2014-02-09 23:52:59 +01:00
|
|
|
"-DPREFER_STATIC_LIBS:BOOL=OFF"];
|
2014-02-08 18:09:27 +01:00
|
|
|
|
2014-02-10 09:41:30 +01:00
|
|
|
buildInputs = [ cmake lzma boost libdevil zlib p7zip openal libvorbis freetype SDL
|
2014-02-09 23:52:59 +01:00
|
|
|
xlibs.libX11 xlibs.libXcursor mesa glew asciidoc libxslt docbook_xsl curl makeWrapper
|
2014-02-08 18:09:27 +01:00
|
|
|
docbook_xsl_ns ]
|
2010-11-13 08:47:04 +01:00
|
|
|
++ stdenv.lib.optional withAI jdk
|
|
|
|
++ stdenv.lib.optional withAI python;
|
|
|
|
|
2014-02-08 18:09:27 +01:00
|
|
|
# reported upstream http://springrts.com/mantis/view.php?id=4305
|
2014-02-05 08:20:20 +01:00
|
|
|
#enableParallelBuilding = true; # occasionally missing generated files on Hydra
|
2010-11-13 08:47:04 +01:00
|
|
|
|
2014-02-09 23:52:59 +01:00
|
|
|
postInstall = ''
|
|
|
|
wrapProgram "$out/bin/spring" \
|
|
|
|
--prefix LD_LIBRARY_PATH : "${stdenv.gcc.gcc}/lib64:${stdenv.gcc.gcc}/lib"
|
|
|
|
'';
|
|
|
|
|
2010-11-13 08:47:04 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = http://springrts.com/;
|
2013-10-07 17:36:47 +02:00
|
|
|
description = "A powerful real-time strategy (RTS) game engine";
|
2010-11-13 08:47:04 +01:00
|
|
|
license = licenses.gpl2;
|
2014-02-08 18:09:27 +01:00
|
|
|
maintainers = [ maintainers.phreedom maintainers.qknight maintainers.iElectric ];
|
2013-10-07 17:36:47 +02:00
|
|
|
platforms = platforms.mesaPlatforms;
|
2010-11-13 08:47:04 +01:00
|
|
|
};
|
2011-12-11 19:35:23 +01:00
|
|
|
}
|