summary refs log tree commit diff
path: root/pkgs/development/libraries/libwebp
diff options
context:
space:
mode:
authoradisbladis <adisbladis@gmail.com>2019-11-10 16:44:34 +0000
committeradisbladis <adisbladis@gmail.com>2019-11-18 20:10:43 +0000
commitc9d8624ccddf17aee28745446b6763aabb26b4c7 (patch)
treee7caf27ce92b6bc9b94eb65246cb6c2913adca44 /pkgs/development/libraries/libwebp
parente6963bc983048c6f2b2d29efc5921a2d8f0c6e9c (diff)
downloadnixpkgs-c9d8624ccddf17aee28745446b6763aabb26b4c7.tar
nixpkgs-c9d8624ccddf17aee28745446b6763aabb26b4c7.tar.gz
nixpkgs-c9d8624ccddf17aee28745446b6763aabb26b4c7.tar.bz2
nixpkgs-c9d8624ccddf17aee28745446b6763aabb26b4c7.tar.lz
nixpkgs-c9d8624ccddf17aee28745446b6763aabb26b4c7.tar.xz
nixpkgs-c9d8624ccddf17aee28745446b6763aabb26b4c7.tar.zst
nixpkgs-c9d8624ccddf17aee28745446b6763aabb26b4c7.zip
treewide: Get rid of libGLU_combined
Diffstat (limited to 'pkgs/development/libraries/libwebp')
-rw-r--r--pkgs/development/libraries/libwebp/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/libraries/libwebp/default.nix b/pkgs/development/libraries/libwebp/default.nix
index fc9932567cf..56c3f638d52 100644
--- a/pkgs/development/libraries/libwebp/default.nix
+++ b/pkgs/development/libraries/libwebp/default.nix
@@ -1,6 +1,6 @@
 { stdenv, fetchurl
 , threadingSupport ? true # multi-threading
-, openglSupport ? false, freeglut ? null, libGLU_combined ? null # OpenGL (required for vwebp)
+, openglSupport ? false, freeglut ? null, libGL ? null, libGLU ? null # OpenGL (required for vwebp)
 , pngSupport ? true, libpng ? null # PNG image format
 , jpegSupport ? true, libjpeg ? null # JPEG image format
 , tiffSupport ? true, libtiff ? null # TIFF image format
@@ -14,7 +14,7 @@
 , libwebpdecoderSupport ? true # Build libwebpdecoder
 }:
 
-assert openglSupport -> ((freeglut != null) && (libGLU_combined != null));
+assert openglSupport -> freeglut != null && libGL != null && libGLU != null;
 assert pngSupport -> (libpng != null);
 assert jpegSupport -> (libjpeg != null);
 assert tiffSupport -> (libtiff != null);
@@ -51,7 +51,7 @@ stdenv.mkDerivation rec {
   ];
 
   buildInputs = [ ]
-    ++ optionals openglSupport [ freeglut libGLU_combined ]
+    ++ optionals openglSupport [ freeglut libGL libGLU ]
     ++ optional pngSupport libpng
     ++ optional jpegSupport libjpeg
     ++ optional tiffSupport libtiff