70 lines
2.4 KiB
Nix
70 lines
2.4 KiB
Nix
{ stdenv, fetchurl
|
|
, threadingSupport ? true # multi-threading
|
|
, openglSupport ? false, freeglut ? null, libGLU_combined ? 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
|
|
, gifSupport ? true, giflib ? null # GIF image format
|
|
#, wicSupport ? true # Windows Imaging Component
|
|
, alignedSupport ? false # Force aligned memory operations
|
|
, swap16bitcspSupport ? false # Byte swap for 16bit color spaces
|
|
, experimentalSupport ? false # Experimental code
|
|
, libwebpmuxSupport ? true # Build libwebpmux
|
|
, libwebpdemuxSupport ? true # Build libwebpdemux
|
|
, libwebpdecoderSupport ? true # Build libwebpdecoder
|
|
}:
|
|
|
|
assert openglSupport -> ((freeglut != null) && (libGLU_combined != null));
|
|
assert pngSupport -> (libpng != null);
|
|
assert jpegSupport -> (libjpeg != null);
|
|
assert tiffSupport -> (libtiff != null);
|
|
assert gifSupport -> (giflib != null);
|
|
|
|
let
|
|
mkFlag = optSet: flag: if optSet then "--enable-${flag}" else "--disable-${flag}";
|
|
in
|
|
|
|
with stdenv.lib;
|
|
stdenv.mkDerivation rec {
|
|
name = "libwebp-${version}";
|
|
version = "1.0.2";
|
|
|
|
src = fetchurl {
|
|
url = "http://downloads.webmproject.org/releases/webp/${name}.tar.gz";
|
|
sha256 = "1cb4sm6h1czvk9kqqgld3g5f0d9qv60xnbbv0kl7cr7d826b8irx";
|
|
};
|
|
|
|
configureFlags = [
|
|
(mkFlag threadingSupport "threading")
|
|
(mkFlag openglSupport "gl")
|
|
(mkFlag pngSupport "png")
|
|
(mkFlag jpegSupport "jpeg")
|
|
(mkFlag tiffSupport "tiff")
|
|
(mkFlag gifSupport "gif")
|
|
#(mkFlag (wicSupport && stdenv.isCygwin) "wic")
|
|
(mkFlag alignedSupport "aligned")
|
|
(mkFlag swap16bitcspSupport "swap-16bit-csp")
|
|
(mkFlag experimentalSupport "experimental")
|
|
(mkFlag libwebpmuxSupport "libwebpmux")
|
|
(mkFlag libwebpdemuxSupport "libwebpdemux")
|
|
(mkFlag libwebpdecoderSupport "libwebpdecoder")
|
|
];
|
|
|
|
buildInputs = [ ]
|
|
++ optionals openglSupport [ freeglut libGLU_combined ]
|
|
++ optional pngSupport libpng
|
|
++ optional jpegSupport libjpeg
|
|
++ optional tiffSupport libtiff
|
|
++ optional gifSupport giflib;
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = {
|
|
description = "Tools and library for the WebP image format";
|
|
homepage = https://developers.google.com/speed/webp/;
|
|
license = licenses.bsd3;
|
|
platforms = platforms.all;
|
|
maintainers = with maintainers; [ codyopel ];
|
|
};
|
|
}
|