2010-07-08 21:22:50 +02:00
|
|
|
{ stdenv, fetchurl, perl }:
|
2008-04-23 09:34:20 +02:00
|
|
|
|
2010-03-06 00:22:36 +01:00
|
|
|
let
|
|
|
|
opensslCrossSystem = stdenv.lib.attrByPath [ "openssl" "system" ]
|
|
|
|
(throw "openssl needs its platform name cross building" null)
|
|
|
|
stdenv.cross;
|
|
|
|
in
|
|
|
|
|
2010-07-18 23:54:14 +02:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "openssl-1.0.0a";
|
|
|
|
|
2006-09-29 23:17:10 +02:00
|
|
|
src = fetchurl {
|
2010-01-20 14:49:07 +01:00
|
|
|
url = "http://www.openssl.org/source/${name}.tar.gz";
|
2010-07-18 23:54:14 +02:00
|
|
|
sha256 = "0qqgyzfb0alwx329z8bqybzamfl9j2maykykvq6zk3ibq0gvva8q";
|
2006-09-29 23:17:10 +02:00
|
|
|
};
|
2010-01-20 14:49:07 +01:00
|
|
|
|
2010-07-23 17:05:20 +02:00
|
|
|
patches = ./darwin-arch.patch;
|
2010-07-18 23:54:14 +02:00
|
|
|
|
2010-03-06 00:22:36 +01:00
|
|
|
buildNativeInputs = [ perl ];
|
2008-10-09 16:29:06 +02:00
|
|
|
|
|
|
|
configureScript = "./config";
|
|
|
|
|
2010-07-19 12:27:46 +02:00
|
|
|
configureFlags = "shared --libdir=lib";
|
2008-10-09 16:29:06 +02:00
|
|
|
|
2010-03-06 00:22:36 +01:00
|
|
|
crossAttrs = {
|
2010-07-23 17:05:20 +02:00
|
|
|
preConfigure=''
|
2010-03-06 00:22:36 +01:00
|
|
|
export cross=$crossSystem-
|
|
|
|
'';
|
2010-07-23 17:05:20 +02:00
|
|
|
configureFlags="--libdir=lib ${opensslCrossSystem} shared";
|
2010-03-06 00:22:36 +01:00
|
|
|
buildPhase = ''
|
|
|
|
make CC=$crossConfig-gcc \
|
|
|
|
AR="$crossConfig-ar r" \
|
|
|
|
RANLIB=$crossConfig-ranlib
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2008-10-09 16:29:06 +02:00
|
|
|
meta = {
|
|
|
|
homepage = http://www.openssl.org/;
|
|
|
|
description = "A cryptographic library that implements the SSL and TLS protocols";
|
|
|
|
};
|
2010-07-18 23:54:14 +02:00
|
|
|
}
|