Compare commits

...

1 Commits

Author SHA1 Message Date
Eelco Dolstra
1dfe5916f5 * OpenSSL 0.9.8h.
svn path=/nixpkgs/branches/stdenv-updates/; revision=12061
2008-06-12 16:08:54 +00:00

View File

@@ -1,11 +1,11 @@
{stdenv, fetchurl, perl}:
stdenv.mkDerivation {
name = "openssl-0.9.8g";
name = "openssl-0.9.8h";
builder = ./builder.sh;
src = fetchurl {
url = ftp://ftp.nluug.nl/pub/security/openssl/openssl-0.9.8g.tar.gz;
sha256 = "1w0wj3pgg9ga0hay3jdxs9sl17bfw307b6qvkxn735fy8ml8h9hf";
url = ftp://ftp.nluug.nl/pub/security/openssl/openssl-0.9.8h.tar.gz;
sha1 = "ced4f2da24a202e01ea22bef30ebc8aee274de86";
};
buildInputs = [perl];
}