* openssl-0.9.8i.

svn path=/nixpkgs/branches/stdenv-updates/; revision=13024
This commit is contained in:
Eelco Dolstra 2008-10-09 14:29:06 +00:00
parent 5eef7df51d
commit 201d20db20
2 changed files with 14 additions and 16 deletions

View File

@ -1,12 +0,0 @@
source $stdenv/setup
configureScript=./config
configureFlags=shared
postInstall=postInstall
postInstall() {
# Bug fix: openssl does a `chmod 644' on the pkgconfig directory.
chmod 755 $out/lib/pkgconfig
}
genericBuild

View File

@ -1,11 +1,21 @@
{stdenv, fetchurl, perl}: {stdenv, fetchurl, perl}:
stdenv.mkDerivation { stdenv.mkDerivation {
name = "openssl-0.9.8h"; name = "openssl-0.9.8i";
builder = ./builder.sh;
src = fetchurl { src = fetchurl {
url = ftp://ftp.nluug.nl/pub/security/openssl/openssl-0.9.8h.tar.gz; url = http://www.openssl.org/source/openssl-0.9.8i.tar.gz;
sha1 = "ced4f2da24a202e01ea22bef30ebc8aee274de86"; sha1 = "b2e029cfb68bf32eae997d60317a40945db5a65f";
}; };
buildInputs = [perl]; buildInputs = [perl];
configureScript = "./config";
configureFlags = "shared";
meta = {
homepage = http://www.openssl.org/;
description = "A cryptographic library that implements the SSL and TLS protocols";
};
} }