nixpkgs/pkgs/games/freeorion/default.nix

48 lines
1.5 KiB
Nix
Raw Normal View History

{ 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
}:
2016-04-15 23:37:09 +00:00
stdenv.mkDerivation rec {
2020-02-11 07:56:42 +00:00
version = "0.4.9";
pname = "freeorion";
2016-04-15 23:37:09 +00:00
src = fetchFromGitHub {
owner = "freeorion";
repo = "freeorion";
2018-09-02 19:42:47 +00:00
rev = "v${version}";
2020-02-11 07:56:42 +00:00
sha256 = "18xigx4qla225ybf7mc1w8zfm81nhcm1i5181n5l2fbndvslb1wf";
2016-04-15 23:37:09 +00:00
};
2018-09-02 19:42:47 +00:00
buildInputs = [
(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 ];
nativeBuildInputs = [ cmake doxygen graphviz makeWrapper ];
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} \
--subst-var-by shell ${stdenv.shell} \
--subst-var out
chmod +x $out/fixpaths/fix-paths
wrapProgram $out/bin/freeorion \
2018-09-02 19:42:47 +00:00
--run $out/fixpaths/fix-paths \
--prefix LD_LIBRARY_PATH : $out/lib/freeorion
'';
meta = with lib; {
2016-04-15 23:37:09 +00:00
description = "A free, open source, turn-based space empire and galactic conquest (4X) computer game";
homepage = "http://www.freeorion.org";
license = with licenses; [ gpl2 cc-by-sa-30 ];
2016-04-15 23:37:09 +00:00
platforms = platforms.linux;
2018-09-02 19:42:47 +00:00
maintainers = with maintainers; [ tex ];
2016-04-15 23:37:09 +00:00
};
}