digikam: disable JPEG2000 support by default

jasper has several unfixed CVE and seems unmaintained
Upstream open bug to replace it with OpenJPEG is:
https://bugs.kde.org/show_bug.cgi?id=364231
This commit is contained in:
c0bw3b 2019-11-17 19:28:05 +01:00
parent 9315000432
commit acd9058931

View file

@ -26,7 +26,7 @@
, exiv2
, ffmpeg
, flex
, jasper
, jasper ? null, withJpeg2k ? false # disable JPEG2000 support, jasper has unfixed CVE
, lcms2
, lensfun
, libgphoto2
@ -70,7 +70,6 @@ mkDerivation rec {
exiv2
ffmpeg
flex
jasper
lcms2
lensfun
libgphoto2
@ -103,7 +102,8 @@ mkDerivation rec {
marble
oxygen
threadweaver
];
]
++ lib.optionals withJpeg2k [ jasper ];
enableParallelBuilding = true;