Skip to content

Commit 5371962

Browse files
adisbladisvcunat
authored andcommittedJan 10, 2018
openssl_1_1_0: Fix CVE-2017-3738 (#33544)
(cherry picked from commit 4cc3510)
1 parent ae54250 commit 5371962

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed
 

‎pkgs/development/libraries/openssl/default.nix

+8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{ stdenv, fetchurl, buildPackages, perl
22
, hostPlatform
3+
, fetchpatch
34
, withCryptodev ? false, cryptodevHeaders
45
, enableSSL2 ? false
56
}:
@@ -114,6 +115,13 @@ in {
114115
openssl_1_1_0 = common {
115116
version = "1.1.0g";
116117
sha256 = "1bvka2wf33w2vxv7yw578nnjqyhz2b3chvfb0l4k2ffscw950kfy";
118+
patches = [
119+
(fetchpatch {
120+
name = "CVE-2017-3738.patch";
121+
url = "https://github.com/openssl/openssl/commit/563066.patch";
122+
sha256 = "0ni9fwpxf8raw8b58pfa15akbqmxx4q64v0ldsm4b9dqhbxf8mkz";
123+
})
124+
];
117125
};
118126

119127
}

0 commit comments

Comments
 (0)
Please sign in to comment.