mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-06 17:13:24 -05:00
libtiff: Add pkg-config required deps to propagatedBuildInputs
This commit is contained in:
parent
55d225453e
commit
30b9aa9ab8
1 changed files with 8 additions and 5 deletions
|
|
@ -80,14 +80,17 @@ stdenv.mkDerivation (finalAttrs: {
|
|||
sphinx
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
libdeflate
|
||||
# Things listed in the
|
||||
# pkg-config file need to be propagated or else
|
||||
# they will not be picked up properly
|
||||
propagatedBuildInputs = [
|
||||
libjpeg
|
||||
# libwebp depends on us; this will cause infinite recursion otherwise
|
||||
(libwebp.override { tiffSupport = false; })
|
||||
xz
|
||||
zlib
|
||||
zstd
|
||||
libdeflate
|
||||
xz
|
||||
# libwebp depends on us; this will cause infinite recursion otherwise
|
||||
(libwebp.override { tiffSupport = false; })
|
||||
]
|
||||
++ lib.optionals withLerc [
|
||||
lerc
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue