Revert "OpenSSL-1.0.0" changes, due to the new API breaking too much packages, which still have

not released new versions compatible with openssl 1.0.0

I downgraded to 0.9.8n, that also has the security hole fix.

svn path=/nixpkgs/trunk/; revision=21408
This commit is contained in:
Lluís Batlle i Rossell
2010-04-28 15:01:06 +00:00
parent 6b8de64183
commit e5ce3e5c8c
2 changed files with 30 additions and 25 deletions

View File

@@ -6,14 +6,17 @@ let
stdenv.cross;
in
stdenv.mkDerivation (rec {
name = "openssl-1.0.0";
stdenv.mkDerivation rec {
name = "openssl-0.9.8n";
src = fetchurl {
url = "http://www.openssl.org/source/${name}.tar.gz";
sha1 = "3f800ea9fa3da1c0f576d689be7dca3d55a4cb62";
sha256 = "008z1h09pa6dfxs4wgbqj5i1clw4v82b1waqvwanb1kb6wlbq6mh";
};
# I disable the patch temporarily, as it does not apply to 0.9.8n
# patches = [ ./darwin-arch.patch ];
buildNativeInputs = [ perl ];
configureScript = "./config";
@@ -37,9 +40,3 @@ stdenv.mkDerivation (rec {
description = "A cryptographic library that implements the SSL and TLS protocols";
};
}
//
(if stdenv.isDarwin then {
patches = ./darwin-arch.patch;
}
else { })
)