glycin-thumbnailer: add package test for building with all loaders

This commit is contained in:
Tom Hunze
2026-05-30 00:02:13 +02:00
parent aac10d3941
commit c7cd5a89bb

View File

@@ -6,6 +6,7 @@
fontconfig,
glib,
glycin-loaders,
glycin-thumbnailer,
libglycin,
libseccomp,
meson,
@@ -66,7 +67,20 @@ stdenv.mkDerivation (finalAttrs: {
)
'';
passthru.tests.thumbnailer = callPackage ./tests.nix { };
passthru.tests = {
all-loaders = glycin-thumbnailer.override {
glycin-loaders = glycin-loaders.override {
enabledLoaders = [
"heif"
"image-rs"
"jxl"
"raw"
"svg"
];
};
};
thumbnailer = callPackage ./tests.nix { };
};
meta = {
description = "Glycin thumbnailers for several formats";