Merge pull request #80746 from vcunat/p/openssl-eol
openssl_1_0_2: mark as insecure; fixes #77503 (kinda)
This commit is contained in:
commit
b1ec189c9f
@ -7,7 +7,8 @@
|
|||||||
with stdenv.lib;
|
with stdenv.lib;
|
||||||
|
|
||||||
let
|
let
|
||||||
common = { version, sha256, patches ? [], withDocs ? false }: stdenv.mkDerivation rec {
|
common = { version, sha256, patches ? [], withDocs ? false, extraMeta ? {} }:
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
pname = "openssl";
|
pname = "openssl";
|
||||||
inherit version;
|
inherit version;
|
||||||
|
|
||||||
@ -130,7 +131,7 @@ let
|
|||||||
license = licenses.openssl;
|
license = licenses.openssl;
|
||||||
platforms = platforms.all;
|
platforms = platforms.all;
|
||||||
maintainers = [ maintainers.peti ];
|
maintainers = [ maintainers.peti ];
|
||||||
};
|
} // extraMeta;
|
||||||
};
|
};
|
||||||
|
|
||||||
in {
|
in {
|
||||||
@ -145,6 +146,7 @@ in {
|
|||||||
then ./1.0.2/use-etc-ssl-certs-darwin.patch
|
then ./1.0.2/use-etc-ssl-certs-darwin.patch
|
||||||
else ./1.0.2/use-etc-ssl-certs.patch)
|
else ./1.0.2/use-etc-ssl-certs.patch)
|
||||||
];
|
];
|
||||||
|
extraMeta.knownVulnerabilities = [ "Support for OpenSSL 1.0.2 ended with 2019." ];
|
||||||
};
|
};
|
||||||
|
|
||||||
openssl_1_1 = common {
|
openssl_1_1 = common {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user