Merge pull request #127862 from est31/kimageformats-avif

kimageformats: enable AVIF support
This commit is contained in:
Sandro 2021-06-23 11:21:22 +02:00 committed by GitHub
commit b1662abccc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,7 +1,7 @@
{
mkDerivation, lib,
extra-cmake-modules,
ilmbase, karchive, openexr, qtbase
ilmbase, karchive, openexr, libavif, qtbase
}:
let inherit (lib) getDev; in
@ -9,7 +9,7 @@ let inherit (lib) getDev; in
mkDerivation {
name = "kimageformats";
nativeBuildInputs = [ extra-cmake-modules ];
buildInputs = [ karchive openexr qtbase ];
buildInputs = [ karchive openexr libavif qtbase ];
outputs = [ "out" ]; # plugins only
CXXFLAGS = "-I${getDev ilmbase}/include/OpenEXR";
}