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 {
|
2011-02-09 11:02:24 +00:00
|
|
|
name = "openssl-1.0.0d";
|
2010-07-18 22:54:14 +01:00
|
|
|
|
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";
|
2011-02-09 11:02:24 +00:00
|
|
|
sha256 = "1nr0cf6pf8i4qsnx31kqhiqv402xgn76yhjhlbdri8ma1hgislcj";
|
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 ];
|
2011-09-21 19:45:52 +01:00
|
|
|
|
2010-07-25 10:09:32 +01:00
|
|
|
# On x86_64-darwin, "./config" misdetects the system as
|
|
|
|
# "darwin-i386-cc". So specify the system type explicitly.
|
|
|
|
configureScript =
|
|
|
|
if stdenv.system == "x86_64-darwin" then "./Configure darwin64-x86_64-cc" else "./config";
|
2011-09-21 19:45:52 +01:00
|
|
|
|
2010-07-19 11:27:46 +01:00
|
|
|
configureFlags = "shared --libdir=lib";
|
2008-10-09 15:29:06 +01:00
|
|
|
|
2011-02-09 15:27:34 +00:00
|
|
|
postInstall =
|
|
|
|
''
|
|
|
|
# If we're building dynamic libraries, then don't install static
|
|
|
|
# libraries.
|
|
|
|
if [ -n "$(echo $out/lib/*.so)" ]; then
|
|
|
|
rm $out/lib/*.a
|
|
|
|
fi
|
|
|
|
''; # */
|
|
|
|
|
2010-03-05 23:22:36 +00:00
|
|
|
crossAttrs = {
|
2010-07-23 16:05:20 +01:00
|
|
|
preConfigure=''
|
2010-08-02 23:10:42 +01:00
|
|
|
# It's configure does not like --build or --host
|
|
|
|
export configureFlags="--libdir=lib --cross-compile-prefix=${stdenv.cross.config}- shared ${opensslCrossSystem}"
|
2010-03-05 23:22:36 +00:00
|
|
|
'';
|
2010-08-09 22:37:31 +01:00
|
|
|
|
|
|
|
postInstall = ''
|
2010-08-11 21:08:29 +01:00
|
|
|
# Openssl installs readonly files, which otherwise we can't strip.
|
|
|
|
# This could at some stdenv hash change be put out of crossAttrs, too
|
2010-08-09 22:37:31 +01:00
|
|
|
chmod -R +w $out
|
2010-08-11 21:08:29 +01:00
|
|
|
|
|
|
|
# Remove references to perl, to avoid depending on it at runtime
|
|
|
|
rm $out/bin/c_rehash $out/ssl/misc/CA.pl $out/ssl/misc/tsget
|
2010-08-09 22:37:31 +01:00
|
|
|
'';
|
2010-08-02 23:10:42 +01:00
|
|
|
configureScript = "./Configure";
|
2010-03-05 23:22:36 +00:00
|
|
|
};
|
|
|
|
|
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";
|
2011-09-21 19:45:52 +01:00
|
|
|
platforms = stdenv.lib.platforms.all;
|
|
|
|
maintainers = [ stdenv.lib.maintainers.simons ];
|
2008-10-09 15:29:06 +01:00
|
|
|
};
|
2010-07-18 22:54:14 +01:00
|
|
|
}
|