openssl: update to version 1.0.1i

See https://www.openssl.org/news/secadv_20140806.txt for a long list of CVE numbers.
Fixes <https://github.com/NixOS/nixpkgs/issues/3485>.
This commit is contained in:
Peter Simons 2014-08-08 09:46:57 +02:00
parent 9a5adb93d4
commit 5c276c4f68

View file

@ -2,7 +2,7 @@
, withCryptodev ? false, cryptodevHeaders }:
let
name = "openssl-1.0.1h";
name = "openssl-1.0.1i";
opensslCrossSystem = stdenv.lib.attrByPath [ "openssl" "system" ]
(throw "openssl needs its platform name cross building" null)
@ -43,7 +43,7 @@ stdenv.mkDerivation {
"http://www.openssl.org/source/${name}.tar.gz"
"http://openssl.linux-mirror.org/source/${name}.tar.gz"
];
sha256 = "14yhsgag5as7nhxnw7f0vklwjwa3pmn1i15nmp3f4qxa6sc8l74x";
sha256 = "1izwv1wzqdw8aqnvb70jcqpqp0rvkcm22w5c1dm9l1kpr939y5rw";
};
patches = patchesCross false;
@ -65,7 +65,7 @@ stdenv.mkDerivation {
makeFlags = "MANDIR=$(out)/share/man";
# Parallel building is broken in OpenSSL.
#enableParallelBuilding = true;
enableParallelBuilding = false;
postInstall =
''