openjpeg: remove libdeflate from buildInputs

libdeflate is a dependency of libtiff which pkg-config expects seeing,
and openjpeg doesn't use libdeflate directly (aside from libtiff) [1]

As it is now added to the propagatedBuildInputs of the
Remove from the buildInputs of reverse-dependent packages.

1: https://packages.debian.org/source/buster/openjpeg2
This commit is contained in:
Yueh-Shun Li 2023-03-22 18:17:21 +08:00
parent 6a60f11bfa
commit eb3cb597c3

View file

@ -50,7 +50,7 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ cmake pkg-config ];
buildInputs = [ libdeflate libpng libtiff zlib lcms2 ]
buildInputs = [ libpng libtiff zlib lcms2 ]
++ lib.optionals jpipServerSupport [ curl fcgi ]
++ lib.optional (jpipLibSupport) jdk;