Sandro Jäckel aea1943b30
Revert "plasma5Packages.kimageformats: temporarily disable libavif support"
This reverts commit e084a24b594fa6b947ea4ba5ca46668788ef4eda.
2025-07-14 13:41:04 +02:00

37 lines
457 B
Nix

{
mkDerivation,
lib,
extra-cmake-modules,
ilmbase,
karchive,
openexr,
libavif,
libheif,
libjxl,
libraw,
qtbase,
}:
let
inherit (lib) getDev;
in
mkDerivation {
pname = "kimageformats";
nativeBuildInputs = [ extra-cmake-modules ];
buildInputs = [
karchive
openexr
libavif
libheif
libjxl
libraw
qtbase
];
outputs = [ "out" ]; # plugins only
cmakeFlags = [
"-DKIMAGEFORMATS_HEIF=ON"
];
}