ftgl: Don't use libGLU_combined

This commit is contained in:
adisbladis 2019-11-07 16:39:02 +00:00
parent 53731cbe78
commit 317958d27b
No known key found for this signature in database
GPG Key ID: 110BFAD44C6249B7

View File

@ -1,4 +1,4 @@
{ stdenv, fetchurl, freetype, libGLU_combined, OpenGL }: { stdenv, fetchurl, freetype, libGL, libGLU, OpenGL }:
let let
name = "ftgl-2.1.3-rc5"; name = "ftgl-2.1.3-rc5";
@ -15,7 +15,7 @@ stdenv.mkDerivation {
++ (if stdenv.isDarwin then ++ (if stdenv.isDarwin then
[ OpenGL ] [ OpenGL ]
else else
[ libGLU_combined ]) [ libGL libGLU ])
; ;
enableParallelBuilding = true; enableParallelBuilding = true;