From e49c0a0976eede0292f54089711e590d0ff15636 Mon Sep 17 00:00:00 2001 From: Milan Svoboda Date: Wed, 19 Feb 2020 21:36:28 +0100 Subject: [PATCH] freeorion: fix build fail fixes #79805 --- pkgs/games/freeorion/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/games/freeorion/default.nix b/pkgs/games/freeorion/default.nix index 527e4168083..e32943fa8be 100644 --- a/pkgs/games/freeorion/default.nix +++ b/pkgs/games/freeorion/default.nix @@ -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 ];