2020-03-20 22:37:21 +00:00
|
|
|
{ stdenv, fetchFromGitHub, cmake, lzma, boost, libdevil, zlib, p7zip
|
2019-11-10 16:44:34 +00:00
|
|
|
, openal, libvorbis, glew, freetype, xorg, SDL2, libGLU, libGL
|
2014-02-09 22:52:59 +00:00
|
|
|
, asciidoc, libxslt, docbook_xsl, docbook_xsl_ns, curl, makeWrapper
|
2018-05-27 21:24:10 +01:00
|
|
|
, jdk ? null, python ? null, systemd, libunwind, which, minizip
|
2010-11-13 07:47:04 +00:00
|
|
|
, withAI ? true # support for AI Interfaces and Skirmish AIs
|
|
|
|
}:
|
2014-02-08 17:16:28 +00:00
|
|
|
|
2010-11-13 07:47:04 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "spring";
|
2020-03-20 22:37:21 +00:00
|
|
|
version = "104.0.1";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "spring";
|
|
|
|
repo = "spring";
|
2020-03-21 17:18:34 +00:00
|
|
|
rev = "9ee29da876f6d3d23e169185619b58df9c036703";
|
|
|
|
sha256 = "0m94i85k8k5ls1ff9z8djslzhkgr7b7vsbpic2axxjvki6sn2xjv";
|
2020-03-20 22:37:21 +00:00
|
|
|
fetchSubmodules = true;
|
2010-11-13 07:47:04 +00:00
|
|
|
};
|
|
|
|
|
2016-05-03 10:19:19 +01: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"
|
2020-03-20 22:37:21 +00:00
|
|
|
substituteInPlace ./rts/Rendering/GL/myGL.cpp \
|
|
|
|
--replace "static constexpr const GLubyte* qcriProcName" "static const GLubyte* qcriProcName"
|
2016-05-03 10:19:19 +01:00
|
|
|
patchShebangs .
|
|
|
|
rm rts/build/cmake/FindGLEW.cmake
|
2020-03-20 22:37:21 +00:00
|
|
|
|
|
|
|
echo "104.0.1-1466-g9ee29da maintenance" > VERSION
|
2016-05-03 10:19:19 +01:00
|
|
|
'';
|
|
|
|
|
2014-02-08 17:09:27 +00:00
|
|
|
cmakeFlags = ["-DCMAKE_BUILD_WITH_INSTALL_RPATH:BOOL=ON"
|
|
|
|
"-DCMAKE_INSTALL_RPATH_USE_LINK_PATH:BOOL=ON"
|
2014-02-09 22:52:59 +00:00
|
|
|
"-DPREFER_STATIC_LIBS:BOOL=OFF"];
|
2014-02-08 17:09:27 +00:00
|
|
|
|
2016-05-03 10:19:19 +01:00
|
|
|
buildInputs = [ cmake lzma boost libdevil zlib p7zip openal libvorbis freetype SDL2
|
2019-11-10 16:44:34 +00:00
|
|
|
xorg.libX11 xorg.libXcursor libGLU libGL glew asciidoc libxslt docbook_xsl curl makeWrapper
|
2018-05-27 21:24:10 +01:00
|
|
|
docbook_xsl_ns systemd libunwind which minizip ]
|
2010-11-13 07:47:04 +00:00
|
|
|
++ stdenv.lib.optional withAI jdk
|
|
|
|
++ stdenv.lib.optional withAI python;
|
|
|
|
|
2016-05-03 10:19:19 +01:00
|
|
|
enableParallelBuilding = true;
|
2010-11-13 07:47:04 +00:00
|
|
|
|
2014-09-04 20:02:14 +01:00
|
|
|
NIX_CFLAGS_COMPILE = "-fpermissive"; # GL header minor incompatibility
|
|
|
|
|
2014-02-09 22:52:59 +00:00
|
|
|
postInstall = ''
|
|
|
|
wrapProgram "$out/bin/spring" \
|
2016-08-23 00:55:12 +01:00
|
|
|
--prefix LD_LIBRARY_PATH : "${stdenv.lib.makeLibraryPath [ stdenv.cc.cc systemd ]}"
|
2014-02-09 22:52:59 +00:00
|
|
|
'';
|
|
|
|
|
2010-11-13 07:47:04 +00:00
|
|
|
meta = with stdenv.lib; {
|
2018-06-27 21:12:57 +01:00
|
|
|
homepage = https://springrts.com/;
|
2013-10-07 16:36:47 +01:00
|
|
|
description = "A powerful real-time strategy (RTS) game engine";
|
2010-11-13 07:47:04 +00:00
|
|
|
license = licenses.gpl2;
|
2016-05-17 12:57:28 +01:00
|
|
|
maintainers = [ maintainers.phreedom maintainers.qknight maintainers.domenkozar ];
|
2014-09-29 23:51:00 +01:00
|
|
|
platforms = platforms.linux;
|
2010-11-13 07:47:04 +00:00
|
|
|
};
|
2011-12-11 18:35:23 +00:00
|
|
|
}
|