Merge pull request #80566 from tex/patch-1

freeorion: fix build fail
This commit is contained in:
Maximilian Bosch 2020-02-25 20:48:11 +01:00 committed by GitHub
commit 7abc41ce0e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,5 +1,5 @@
{ stdenv, fetchFromGitHub, cmake, doxygen, graphviz, makeWrapper
, boost, SDL2, python2, freetype, openal, libogg, libvorbis, zlib, libpng, libtiff
, boost168, SDL2, python2, freetype, openal, libogg, libvorbis, zlib, libpng, libtiff
, libjpeg, libGLU, libGL, glew, libxslt
}:
@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
};
buildInputs = [
(boost.override { enablePython = true; })
(boost168.override { enablePython = true; })
SDL2 python2 freetype openal libogg libvorbis zlib libpng libtiff libjpeg libGLU libGL glew ];
nativeBuildInputs = [ cmake doxygen graphviz makeWrapper ];