2010-07-08 06:25:52 -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-04-29 01:19:13 -07:00
|
|
|
stdenv.mkDerivation ( rec {
|
2010-04-28 08:01:06 -07:00
|
|
|
name = "openssl-0.9.8n";
|
2008-10-09 07:29:06 -07:00
|
|
|
|
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-04-28 08:01:06 -07:00
|
|
|
sha256 = "008z1h09pa6dfxs4wgbqj5i1clw4v82b1waqvwanb1kb6wlbq6mh";
|
2006-09-29 14:17:10 -07:00
|
|
|
};
|
2010-01-20 05:49:07 -08:00
|
|
|
|
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-04-29 01:19:13 -07:00
|
|
|
} // (if stdenv.isDarwin then { patches = [./darwin-arch.patch]; } else {}) )
|