mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-29 18:33:00 +00:00
libwebp: add some key reverse dependencies to passthru.tests
This commit is contained in:
parent
b91029be03
commit
06fa9c705f
@ -11,6 +11,18 @@
|
||||
, libwebpmuxSupport ? true # Build libwebpmux
|
||||
, libwebpdemuxSupport ? true # Build libwebpdemux
|
||||
, libwebpdecoderSupport ? true # Build libwebpdecoder
|
||||
|
||||
# for passthru.tests
|
||||
, freeimage
|
||||
, gd
|
||||
, graphicsmagick
|
||||
, haskellPackages
|
||||
, imagemagick
|
||||
, imlib2
|
||||
, libjxl
|
||||
, opencv
|
||||
, python3
|
||||
, vips
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
@ -51,6 +63,12 @@ stdenv.mkDerivation rec {
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
passthru.tests = {
|
||||
inherit freeimage gd graphicsmagick imagemagick imlib2 libjxl opencv vips;
|
||||
inherit (python3.pkgs) pillow imread;
|
||||
haskell-webp = haskellPackages.webp;
|
||||
};
|
||||
|
||||
meta = with lib; {
|
||||
description = "Tools and library for the WebP image format";
|
||||
homepage = "https://developers.google.com/speed/webp/";
|
||||
|
Loading…
Reference in New Issue
Block a user