wpaperd: added support for avif

added dav1d build requirement and avif cargo feature flag to enable support of .AVIF image files.

references:
https://github.com/danyspin97/wpaperd?tab=readme-ov-file#image-formats-support
https://github.com/image-rs/image/blob/main/README.md#supported-image-formats
This commit is contained in:
shobu
2025-07-28 19:48:15 +02:00
parent 6027c30c8e
commit ee3ce97e77
+6
View File
@@ -6,6 +6,7 @@
libxkbcommon,
wayland,
libGL,
dav1d,
}:
rustPlatform.buildRustPackage rec {
@@ -29,6 +30,11 @@ rustPlatform.buildRustPackage rec {
wayland
libGL
libxkbcommon
dav1d
];
buildFeatures = [
"avif"
];
meta = with lib; {