2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, cmake, doxygen, graphviz, makeWrapper
|
2020-02-19 20:36:28 +00:00
|
|
|
, boost168, SDL2, python2, freetype, openal, libogg, libvorbis, zlib, libpng, libtiff
|
2019-11-10 16:44:34 +00:00
|
|
|
, libjpeg, libGLU, libGL, glew, libxslt
|
2018-03-09 15:33:18 +00:00
|
|
|
}:
|
2016-04-16 00:37:09 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2020-02-11 07:56:42 +00:00
|
|
|
version = "0.4.9";
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "freeorion";
|
2016-04-16 00:37:09 +01:00
|
|
|
|
2017-12-06 08:13:50 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "freeorion";
|
|
|
|
repo = "freeorion";
|
2018-09-02 20:42:47 +01:00
|
|
|
rev = "v${version}";
|
2020-02-11 07:56:42 +00:00
|
|
|
sha256 = "18xigx4qla225ybf7mc1w8zfm81nhcm1i5181n5l2fbndvslb1wf";
|
2016-04-16 00:37:09 +01:00
|
|
|
};
|
|
|
|
|
2018-09-02 20:42:47 +01:00
|
|
|
buildInputs = [
|
2021-01-03 09:43:56 +00:00
|
|
|
(boost168.override { enablePython = true; })
|
2019-11-10 16:44:34 +00:00
|
|
|
SDL2 python2 freetype openal libogg libvorbis zlib libpng libtiff libjpeg libGLU libGL glew ];
|
2017-12-06 08:13:50 +00:00
|
|
|
|
|
|
|
nativeBuildInputs = [ cmake doxygen graphviz makeWrapper ];
|
|
|
|
|
2016-04-18 14:48:38 +01:00
|
|
|
postInstall = ''
|
|
|
|
mkdir -p $out/fixpaths
|
|
|
|
# We need final slashes for XSLT replace to work properly
|
|
|
|
substitute ${./fix-paths.xslt} $out/fixpaths/fix-paths.xslt \
|
|
|
|
--subst-var-by nixStore "$NIX_STORE/" \
|
|
|
|
--subst-var-by out "$out/"
|
|
|
|
substitute ${./fix-paths.sh} $out/fixpaths/fix-paths \
|
|
|
|
--subst-var-by libxsltBin ${libxslt.bin} \
|
2019-01-15 22:41:31 +00:00
|
|
|
--subst-var-by shell ${stdenv.shell} \
|
2016-04-18 14:48:38 +01:00
|
|
|
--subst-var out
|
|
|
|
chmod +x $out/fixpaths/fix-paths
|
|
|
|
|
|
|
|
wrapProgram $out/bin/freeorion \
|
2018-09-02 20:42:47 +01:00
|
|
|
--run $out/fixpaths/fix-paths \
|
|
|
|
--prefix LD_LIBRARY_PATH : $out/lib/freeorion
|
2016-04-18 14:48:38 +01:00
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2016-04-16 00:37:09 +01:00
|
|
|
description = "A free, open source, turn-based space empire and galactic conquest (4X) computer game";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://www.freeorion.org";
|
2017-12-06 08:13:50 +00:00
|
|
|
license = with licenses; [ gpl2 cc-by-sa-30 ];
|
2016-04-16 00:37:09 +01:00
|
|
|
platforms = platforms.linux;
|
2018-09-02 20:42:47 +01:00
|
|
|
maintainers = with maintainers; [ tex ];
|
2016-04-16 00:37:09 +01:00
|
|
|
};
|
|
|
|
}
|