Merge pull request #80746 from vcunat/p/openssl-eol

openssl_1_0_2: mark as insecure; fixes #77503 (kinda)

authored by

worldofpeace and committed by
GitHub
b1ec189c 76f4f6b9

+4 -2
+4 -2
pkgs/development/libraries/openssl/default.nix
··· 7 7 with stdenv.lib; 8 8 9 9 let 10 - common = { version, sha256, patches ? [], withDocs ? false }: stdenv.mkDerivation rec { 10 + common = { version, sha256, patches ? [], withDocs ? false, extraMeta ? {} }: 11 + stdenv.mkDerivation rec { 11 12 pname = "openssl"; 12 13 inherit version; 13 14 ··· 130 131 license = licenses.openssl; 131 132 platforms = platforms.all; 132 133 maintainers = [ maintainers.peti ]; 133 - }; 134 + } // extraMeta; 134 135 }; 135 136 136 137 in { ··· 145 146 then ./1.0.2/use-etc-ssl-certs-darwin.patch 146 147 else ./1.0.2/use-etc-ssl-certs.patch) 147 148 ]; 149 + extraMeta.knownVulnerabilities = [ "Support for OpenSSL 1.0.2 ended with 2019." ]; 148 150 }; 149 151 150 152 openssl_1_1 = common {