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