nixpkgs/pkgs/games/freeorion/default.nix

53 lines
1.6 KiB
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, cmake, doxygen, graphviz, makeWrapper
, boost, SDL2, python2, freetype, openal, libogg, libvorbis, zlib, libpng, libtiff
, libjpeg, libGLU_combined, glew, libxslt
}:
2016-04-15 23:37:09 +00:00
stdenv.mkDerivation rec {
2018-09-02 19:42:47 +00:00
version = "0.4.8";
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}";
sha256 = "1lj1q2ljjgbbiqxb53wdrrcz0zxxr3vv9jqrhbzvfsss7q808jfw";
2016-04-15 23:37:09 +00:00
};
2018-09-02 19:42:47 +00:00
buildInputs = [
(boost.override { enablePython = true; })
SDL2 python2 freetype openal libogg libvorbis zlib libpng libtiff libjpeg libGLU_combined glew ];
nativeBuildInputs = [ cmake doxygen graphviz makeWrapper ];
enableParallelBuilding = true;
2016-04-15 23:37:09 +00:00
2016-12-28 18:52:42 +00:00
patches = [
];
2016-04-15 23:37:09 +00: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} \
--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
'';
2016-04-15 23:37:09 +00:00
meta = with stdenv.lib; {
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
};
}