2021-03-14 18:12:53 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, cmake, xz, boost, libdevil, zlib, p7zip
|
2019-11-10 16:44:34 +00:00
|
|
|
, openal, libvorbis, glew, freetype, xorg, SDL2, libGLU, libGL
|
2020-12-31 17:20:18 +00:00
|
|
|
, asciidoc, 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";
|
2021-08-20 23:26:06 +01:00
|
|
|
version = "105.0.1-${buildId}-g${shortRev}";
|
2020-04-11 13:21:32 +01:00
|
|
|
# usually the latest in https://github.com/spring/spring/commits/maintenance
|
2021-08-20 23:26:06 +01:00
|
|
|
rev = "8581792eac65e07cbed182ccb1e90424ce3bd8fc";
|
2020-04-07 19:58:19 +01:00
|
|
|
shortRev = builtins.substring 0 7 rev;
|
2020-04-13 19:26:49 +01:00
|
|
|
buildId = "1486";
|
2020-03-20 22:37:21 +00:00
|
|
|
|
2020-03-27 19:36:50 +00:00
|
|
|
# taken from https://github.com/spring/spring/commits/maintenance
|
2020-03-20 22:37:21 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "spring";
|
2020-12-31 17:20:18 +00:00
|
|
|
repo = pname;
|
2020-04-07 19:58:19 +01:00
|
|
|
inherit rev;
|
2021-08-20 23:26:06 +01:00
|
|
|
sha256 = "05lvd8grqmv7vl8rrx02rhl0qhmm58dyi6s78b64j3fkia4sfj1r";
|
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
|
|
|
|
2020-04-07 19:58:19 +01:00
|
|
|
echo "${version} 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
|
|
|
|
2020-12-31 17:20:18 +00:00
|
|
|
nativeBuildInputs = [ cmake makeWrapper docbook_xsl docbook_xsl_ns asciidoc ];
|
2021-03-14 18:12:53 +00:00
|
|
|
buildInputs = [ xz boost libdevil zlib p7zip openal libvorbis freetype SDL2
|
2020-12-31 17:20:18 +00:00
|
|
|
xorg.libX11 xorg.libXcursor libGLU libGL glew curl
|
|
|
|
systemd libunwind which minizip ]
|
2021-01-15 04:31:39 +00:00
|
|
|
++ lib.optional withAI jdk
|
|
|
|
++ lib.optional withAI python;
|
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" \
|
2021-01-15 04:31:39 +00:00
|
|
|
--prefix LD_LIBRARY_PATH : "${lib.makeLibraryPath [ stdenv.cc.cc systemd ]}"
|
2014-02-09 22:52:59 +00:00
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +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;
|
2021-12-18 09:25:46 +00:00
|
|
|
maintainers = with maintainers; [ qknight domenkozar sorki ];
|
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
|
|
|
}
|