2014-02-10 02:52:59 +04:00
|
|
|
{ stdenv, fetchurl, cmake, lzma, boost, libdevil, zlib, p7zip
|
2016-05-03 12:19:19 +03:00
|
|
|
, openal, libvorbis, glew, freetype, xorg, SDL2, mesa, binutils
|
2014-02-10 02:52:59 +04:00
|
|
|
, asciidoc, libxslt, docbook_xsl, docbook_xsl_ns, curl, makeWrapper
|
2016-05-03 12:19:19 +03:00
|
|
|
, jdk ? null, python ? null, systemd, libunwind, glibc, which, minizip
|
2010-11-13 10:47:04 +03:00
|
|
|
, withAI ? true # support for AI Interfaces and Skirmish AIs
|
|
|
|
}:
|
2014-02-08 21:16:28 +04:00
|
|
|
|
2010-11-13 10:47:04 +03:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
|
|
|
|
name = "spring-${version}";
|
2016-07-14 10:19:04 +03:00
|
|
|
version = "102.0";
|
2010-11-13 10:47:04 +03:00
|
|
|
|
|
|
|
src = fetchurl {
|
2013-03-29 19:43:38 +04:00
|
|
|
url = "mirror://sourceforge/springrts/spring_${version}_src.tar.lzma";
|
2016-07-14 10:19:04 +03:00
|
|
|
sha256 = "0gjlpzwl3bdv1ickm8r3xlrbc6dm7m8i968hw3p0an49k6bqa77i";
|
2010-11-13 10:47:04 +03:00
|
|
|
};
|
|
|
|
|
2016-05-03 12:19:19 +03: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 21:09:27 +04:00
|
|
|
cmakeFlags = ["-DCMAKE_BUILD_WITH_INSTALL_RPATH:BOOL=ON"
|
|
|
|
"-DCMAKE_INSTALL_RPATH_USE_LINK_PATH:BOOL=ON"
|
2014-02-10 02:52:59 +04:00
|
|
|
"-DPREFER_STATIC_LIBS:BOOL=OFF"];
|
2014-02-08 21:09:27 +04:00
|
|
|
|
2016-05-03 12:19:19 +03:00
|
|
|
buildInputs = [ cmake lzma boost libdevil zlib p7zip openal libvorbis freetype SDL2
|
2015-09-15 12:26:18 +03:00
|
|
|
xorg.libX11 xorg.libXcursor mesa glew asciidoc libxslt docbook_xsl curl makeWrapper
|
2016-05-03 12:19:19 +03:00
|
|
|
docbook_xsl_ns systemd libunwind glibc.dev glibc.static which minizip ]
|
2010-11-13 10:47:04 +03:00
|
|
|
++ stdenv.lib.optional withAI jdk
|
|
|
|
++ stdenv.lib.optional withAI python;
|
|
|
|
|
2016-05-03 12:19:19 +03:00
|
|
|
enableParallelBuilding = true;
|
2010-11-13 10:47:04 +03:00
|
|
|
|
2014-09-04 23:02:14 +04:00
|
|
|
NIX_CFLAGS_COMPILE = "-fpermissive"; # GL header minor incompatibility
|
|
|
|
|
2014-02-10 02:52:59 +04:00
|
|
|
postInstall = ''
|
|
|
|
wrapProgram "$out/bin/spring" \
|
2016-04-30 23:56:43 +03:00
|
|
|
--prefix LD_LIBRARY_PATH : "${stdenv.cc.cc.lib}/lib::${systemd}/lib"
|
2014-02-10 02:52:59 +04:00
|
|
|
'';
|
|
|
|
|
2010-11-13 10:47:04 +03:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = http://springrts.com/;
|
2013-10-07 19:36:47 +04:00
|
|
|
description = "A powerful real-time strategy (RTS) game engine";
|
2010-11-13 10:47:04 +03:00
|
|
|
license = licenses.gpl2;
|
2016-05-17 14:57:28 +03:00
|
|
|
maintainers = [ maintainers.phreedom maintainers.qknight maintainers.domenkozar ];
|
2014-09-30 02:51:00 +04:00
|
|
|
platforms = platforms.linux;
|
2010-11-13 10:47:04 +03:00
|
|
|
};
|
2011-12-11 22:35:23 +04:00
|
|
|
}
|