Merge pull request #280835 from risicle/ris-freeimage-known-vulnerabilities

freeimage: mark with `knownVulnerabilties`
This commit is contained in:
Rick van Schijndel 2024-02-20 20:28:15 +01:00 committed by GitHub
commit 977f8d0dee
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -72,6 +72,20 @@ stdenv.mkDerivation (finalAttrs: {
description = "Open Source library for accessing popular graphics image file formats";
homepage = "http://freeimage.sourceforge.net/";
license = "GPL";
knownVulnerabilities = [
"CVE-2021-33367"
"CVE-2021-40262"
"CVE-2021-40263"
"CVE-2021-40264"
"CVE-2021-40265"
"CVE-2021-40266"
"CVE-2023-47992"
"CVE-2023-47993"
"CVE-2023-47994"
"CVE-2023-47995"
"CVE-2023-47996"
];
maintainers = with lib.maintainers; [viric l-as];
platforms = with lib.platforms; unix;
};