svn path=/nixpkgs/trunk/; revision=16445

This commit is contained in:
Eelco Dolstra 2009-07-23 21:22:13 +00:00
parent ab9eca5868
commit dd2aba46bf
1 changed files with 2 additions and 4 deletions

View File

@ -1,6 +1,6 @@
{stdenv, fetchurl, perl}: {stdenv, fetchurl, perl}:
stdenv.mkDerivation rec { stdenv.mkDerivation (rec {
name = "openssl-0.9.8k"; name = "openssl-0.9.8k";
src = fetchurl { src = fetchurl {
@ -13,11 +13,9 @@ stdenv.mkDerivation rec {
configureScript = "./config"; configureScript = "./config";
configureFlags = "shared"; configureFlags = "shared";
patches = if stdenv.system == "i686-darwin" then [ ./darwin-arch.patch ] else [];
meta = { meta = {
homepage = http://www.openssl.org/; homepage = http://www.openssl.org/;
description = "A cryptographic library that implements the SSL and TLS protocols"; description = "A cryptographic library that implements the SSL and TLS protocols";
}; };
} } // (if stdenv.system == "i686-darwin" then { patches = [ ./darwin-arch.patch ]; } else {}))