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