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
|
2012-01-20 08:41:11 -08:00
|
|
|
|
name = "openssl-1.0.0g";
|
2011-09-21 11:48:04 -07:00
|
|
|
|
|
2010-03-05 15:22:36 -08:00
|
|
|
|
opensslCrossSystem = stdenv.lib.attrByPath [ "openssl" "system" ]
|
|
|
|
|
(throw "openssl needs its platform name cross building" null)
|
|
|
|
|
stdenv.cross;
|
2010-01-20 05:49:07 -08:00
|
|
|
|
|
2012-01-06 13:31:29 -08:00
|
|
|
|
patchesCross = isCross:
|
2011-11-04 11:48:25 -07:00
|
|
|
|
[ # Allow the location of the X509 certificate file (the CA
|
|
|
|
|
# bundle) to be set through the environment variable
|
|
|
|
|
# ‘OPENSSL_X509_CERT_FILE’. This is necessary because the
|
|
|
|
|
# default location ($out/ssl/cert.pem) doesn't exist, and
|
|
|
|
|
# hardcoding something like /etc/ssl/cert.pem is impure and
|
|
|
|
|
# cannot be overriden per-process. For security, the
|
|
|
|
|
# environment variable is ignored for setuid binaries.
|
|
|
|
|
./cert-file.patch
|
|
|
|
|
]
|
2012-01-05 15:46:17 -08:00
|
|
|
|
|
2012-01-23 04:59:18 -08:00
|
|
|
|
++ stdenv.lib.optionals (isCross && opensslCrossSystem == "hurd-x86")
|
2012-01-05 15:46:17 -08:00
|
|
|
|
[ ./cert-file-path-max.patch # merge with `cert-file.patch' eventually
|
|
|
|
|
./gnu.patch # submitted upstream
|
2012-01-23 04:59:18 -08:00
|
|
|
|
]
|
2012-01-05 15:46:17 -08:00
|
|
|
|
|
2012-01-23 04:59:18 -08:00
|
|
|
|
++ stdenv.lib.optional stdenv.isDarwin ./darwin-arch.patch
|
2012-01-06 01:41:22 -08:00
|
|
|
|
++ stdenv.lib.optional (stdenv.system == "x86_64-freebsd") ./freebsd-x86_64-asm.patch;
|
2012-01-06 13:31:29 -08:00
|
|
|
|
|
|
|
|
|
in
|
|
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
|
inherit name;
|
|
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
|
url = "http://www.openssl.org/source/${name}.tar.gz";
|
2012-01-20 08:41:11 -08:00
|
|
|
|
sha1 = "2b517baada2338663c27314cb922f9755e73e07f";
|
2012-01-06 13:31:29 -08:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
patches = patchesCross false;
|
2010-07-18 14:54:14 -07:00
|
|
|
|
|
2010-03-05 15:22:36 -08:00
|
|
|
|
buildNativeInputs = [ perl ];
|
2011-09-21 11:45:52 -07:00
|
|
|
|
|
2010-07-25 02:09:32 -07: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 11:45:52 -07:00
|
|
|
|
|
2010-07-19 03:27:46 -07:00
|
|
|
|
configureFlags = "shared --libdir=lib";
|
2008-10-09 07:29:06 -07:00
|
|
|
|
|
2011-11-04 11:48:25 -07:00
|
|
|
|
makeFlags = "MANDIR=$(out)/share/man";
|
|
|
|
|
|
2011-02-09 07:27:34 -08: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 15:22:36 -08:00
|
|
|
|
crossAttrs = {
|
2012-01-06 13:31:29 -08:00
|
|
|
|
patches = patchesCross true;
|
|
|
|
|
|
2010-07-23 08:05:20 -07:00
|
|
|
|
preConfigure=''
|
2010-08-02 15:10:42 -07: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 15:22:36 -08:00
|
|
|
|
'';
|
2010-08-09 14:37:31 -07:00
|
|
|
|
|
|
|
|
|
postInstall = ''
|
2010-08-11 13:08:29 -07: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 14:37:31 -07:00
|
|
|
|
chmod -R +w $out
|
2010-08-11 13:08:29 -07: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 14:37:31 -07:00
|
|
|
|
'';
|
2010-08-02 15:10:42 -07:00
|
|
|
|
configureScript = "./Configure";
|
2010-03-05 15:22:36 -08:00
|
|
|
|
};
|
|
|
|
|
|
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";
|
2011-09-21 11:45:52 -07:00
|
|
|
|
platforms = stdenv.lib.platforms.all;
|
|
|
|
|
maintainers = [ stdenv.lib.maintainers.simons ];
|
2012-01-04 11:48:08 -08:00
|
|
|
|
priority = 10; # resolves collision with ‘man-pages’
|
2008-10-09 07:29:06 -07:00
|
|
|
|
};
|
2010-07-18 14:54:14 -07:00
|
|
|
|
}
|