acab619ba0
Also compile against latest boost.
47 lines
1.4 KiB
Nix
47 lines
1.4 KiB
Nix
{ stdenv, fetchFromGitHub, cmake, doxygen, graphviz, makeWrapper
|
|
, boost, SDL2, python2, freetype, openal, libogg, libvorbis, zlib, libpng, libtiff, libjpeg, mesa, glew, libxslt }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "0.4.7.1";
|
|
name = "freeorion-${version}";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "freeorion";
|
|
repo = "freeorion";
|
|
rev = "v${version}";
|
|
sha256 = "1m05l3a6ilqd7p2g3aqjpq89grb571cg8n9bpgz0y3sxskcym6sp";
|
|
};
|
|
|
|
buildInputs = [ boost SDL2 python2 freetype openal libogg libvorbis zlib libpng libtiff libjpeg mesa glew ];
|
|
|
|
nativeBuildInputs = [ cmake doxygen graphviz makeWrapper ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
patches = [
|
|
./fix_rpaths.patch
|
|
];
|
|
|
|
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 out
|
|
chmod +x $out/fixpaths/fix-paths
|
|
|
|
wrapProgram $out/bin/freeorion \
|
|
--run $out/fixpaths/fix-paths
|
|
'';
|
|
|
|
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 ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|