2014-02-09 14:52:59 -08:00
|
|
|
{ stdenv, fetchurl, cmake, lzma, boost, libdevil, zlib, p7zip
|
2019-11-10 08:44:34 -08:00
|
|
|
, openal, libvorbis, glew, freetype, xorg, SDL2, libGLU, libGL
|
2014-02-09 14:52:59 -08:00
|
|
|
, asciidoc, libxslt, docbook_xsl, docbook_xsl_ns, curl, makeWrapper
|
2018-05-27 13:24:10 -07:00
|
|
|
, jdk ? null, python ? null, systemd, libunwind, which, minizip
|
2010-11-12 23:47:04 -08:00
|
|
|
, withAI ? true # support for AI Interfaces and Skirmish AIs
|
|
|
|
}:
|
2014-02-08 09:16:28 -08:00
|
|
|
|
2010-11-12 23:47:04 -08:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "spring";
|
2018-05-27 13:42:19 -07:00
|
|
|
version = "104.0";
|
2010-11-12 23:47:04 -08:00
|
|
|
|
|
|
|
src = fetchurl {
|
2013-03-29 08:43:38 -07:00
|
|
|
url = "mirror://sourceforge/springrts/spring_${version}_src.tar.lzma";
|
2018-05-27 13:42:19 -07:00
|
|
|
sha256 = "05pclcbw7v481pqz7bgirlk37494hy4hx4jghhnlzhdaz1cvzc6f";
|
2010-11-12 23:47:04 -08:00
|
|
|
};
|
|
|
|
|
2016-05-03 02:19:19 -07:00
|
|
|
# The cmake included module correcly finds nix's glew, however
|
|
|
|
# it has to be the bundled FindGLEW for headless or dedicated builds
|
|
|
|
prePatch = ''
|
|
|
|
substituteInPlace ./rts/build/cmake/FindAsciiDoc.cmake \
|
|
|
|
--replace "PATHS /usr /usr/share /usr/local /usr/local/share" "PATHS ${docbook_xsl}"\
|
|
|
|
--replace "xsl/docbook/manpages" "share/xml/docbook-xsl/manpages"
|
|
|
|
patchShebangs .
|
|
|
|
rm rts/build/cmake/FindGLEW.cmake
|
|
|
|
'';
|
|
|
|
|
2014-02-08 09:09:27 -08:00
|
|
|
cmakeFlags = ["-DCMAKE_BUILD_WITH_INSTALL_RPATH:BOOL=ON"
|
|
|
|
"-DCMAKE_INSTALL_RPATH_USE_LINK_PATH:BOOL=ON"
|
2014-02-09 14:52:59 -08:00
|
|
|
"-DPREFER_STATIC_LIBS:BOOL=OFF"];
|
2014-02-08 09:09:27 -08:00
|
|
|
|
2016-05-03 02:19:19 -07:00
|
|
|
buildInputs = [ cmake lzma boost libdevil zlib p7zip openal libvorbis freetype SDL2
|
2019-11-10 08:44:34 -08:00
|
|
|
xorg.libX11 xorg.libXcursor libGLU libGL glew asciidoc libxslt docbook_xsl curl makeWrapper
|
2018-05-27 13:24:10 -07:00
|
|
|
docbook_xsl_ns systemd libunwind which minizip ]
|
2010-11-12 23:47:04 -08:00
|
|
|
++ stdenv.lib.optional withAI jdk
|
|
|
|
++ stdenv.lib.optional withAI python;
|
|
|
|
|
2016-05-03 02:19:19 -07:00
|
|
|
enableParallelBuilding = true;
|
2010-11-12 23:47:04 -08:00
|
|
|
|
2014-09-04 12:02:14 -07:00
|
|
|
NIX_CFLAGS_COMPILE = "-fpermissive"; # GL header minor incompatibility
|
|
|
|
|
2014-02-09 14:52:59 -08:00
|
|
|
postInstall = ''
|
|
|
|
wrapProgram "$out/bin/spring" \
|
2016-08-22 16:55:12 -07:00
|
|
|
--prefix LD_LIBRARY_PATH : "${stdenv.lib.makeLibraryPath [ stdenv.cc.cc systemd ]}"
|
2014-02-09 14:52:59 -08:00
|
|
|
'';
|
|
|
|
|
2010-11-12 23:47:04 -08:00
|
|
|
meta = with stdenv.lib; {
|
2018-06-27 13:12:57 -07:00
|
|
|
homepage = https://springrts.com/;
|
2013-10-07 08:36:47 -07:00
|
|
|
description = "A powerful real-time strategy (RTS) game engine";
|
2010-11-12 23:47:04 -08:00
|
|
|
license = licenses.gpl2;
|
2016-05-17 04:57:28 -07:00
|
|
|
maintainers = [ maintainers.phreedom maintainers.qknight maintainers.domenkozar ];
|
2014-09-29 15:51:00 -07:00
|
|
|
platforms = platforms.linux;
|
2019-10-07 08:20:23 -07:00
|
|
|
broken = true;
|
2010-11-12 23:47:04 -08:00
|
|
|
};
|
2011-12-11 10:35:23 -08:00
|
|
|
}
|