Merge pull request #229370 from risicle/ris-tensorflow-lite-known-vulnerabilities

tensorflow-lite: mark with `knownVulnerabilities`
This commit is contained in:
Robert Scott 2023-05-05 19:37:04 +01:00 committed by GitHub
commit 0b194c8c15
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -176,5 +176,28 @@ stdenv.mkDerivation rec {
license = licenses.asl20;
maintainers = with maintainers; [ cpcloud ];
platforms = [ "x86_64-linux" "aarch64-linux" ];
knownVulnerabilities = [
# at least some of
"CVE-2023-27579"
"CVE-2023-25801"
"CVE-2023-25676"
"CVE-2023-25675"
"CVE-2023-25674"
"CVE-2023-25673"
"CVE-2023-25671"
"CVE-2023-25670"
"CVE-2023-25669"
"CVE-2023-25668"
"CVE-2023-25667"
"CVE-2023-25665"
"CVE-2023-25666"
"CVE-2023-25664"
"CVE-2023-25663"
"CVE-2023-25662"
"CVE-2023-25660"
"CVE-2023-25659"
"CVE-2023-25658"
# and many many more
];
};
}