1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-23 11:19:04 -04:00
nixpkgs/pkgs/games/spring/default.nix

38 lines
1.4 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, cmake, lzma, boost, libdevil, zlib, p7zip
, openal, libvorbis, glew, freetype, xlibs, SDL, mesa, binutils
, asciidoc, libxslt, docbook_xsl, curl
, jdk ? null, python ? null
, withAI ? true # support for AI Interfaces and Skirmish AIs
}:
stdenv.mkDerivation rec {
name = "spring-${version}";
2014-02-05 09:24:56 -05:00
version = "96.0";
src = fetchurl {
2013-03-29 11:43:38 -04:00
url = "mirror://sourceforge/springrts/spring_${version}_src.tar.lzma";
2014-02-05 09:24:56 -05:00
sha256 = "1axyqkxgv3a0zg0afzlc7j3lyi412zd551j317ci41yqz2qzf0px";
};
cmakeFlags = ["-DCMAKE_BUILD_WITH_INSTALL_RPATH:BOOL=ON"
"-DCMAKE_INSTALL_RPATH_USE_LINK_PATH:BOOL=ON"
"-DPREFER_STATIC_LIBS=OFF"];
buildInputs = [ cmake lzma boost libdevil zlib p7zip openal libvorbis freetype SDL glibc
xlibs.libX11 xlibs.libXcursor mesa glew asciidoc libxslt docbook_xsl curl
docbook_xsl_ns ]
++ stdenv.lib.optional withAI jdk
++ stdenv.lib.optional withAI python;
# reported upstream http://springrts.com/mantis/view.php?id=4305
#enableParallelBuilding = true; # occasionally missing generated files on Hydra
meta = with stdenv.lib; {
homepage = http://springrts.com/;
2013-10-07 11:36:47 -04:00
description = "A powerful real-time strategy (RTS) game engine";
license = licenses.gpl2;
maintainers = [ maintainers.phreedom maintainers.qknight maintainers.iElectric ];
2013-10-07 11:36:47 -04:00
platforms = platforms.mesaPlatforms;
};
}