We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Learn more about funding links in repositories.
Report abuse
1 parent ae54250 commit 5371962Copy full SHA for 5371962
pkgs/development/libraries/openssl/default.nix
@@ -1,5 +1,6 @@
1
{ stdenv, fetchurl, buildPackages, perl
2
, hostPlatform
3
+, fetchpatch
4
, withCryptodev ? false, cryptodevHeaders
5
, enableSSL2 ? false
6
}:
@@ -114,6 +115,13 @@ in {
114
115
openssl_1_1_0 = common {
116
version = "1.1.0g";
117
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
+ ];
125
};
126
127
}
0 commit comments