2012-09-23 22:50:24 +04:00
|
|
|
|
{ stdenv, fetchurl, perl
|
|
|
|
|
, withCryptodev ? false, cryptodevHeaders }:
|
2008-04-23 11:34:20 +04:00
|
|
|
|
|
2010-03-06 02:22:36 +03:00
|
|
|
|
let
|
2015-03-19 17:57:17 +03:00
|
|
|
|
name = "openssl-1.0.1m";
|
2011-09-21 22:48:04 +04:00
|
|
|
|
|
2010-03-06 02:22:36 +03:00
|
|
|
|
opensslCrossSystem = stdenv.lib.attrByPath [ "openssl" "system" ]
|
|
|
|
|
(throw "openssl needs its platform name cross building" null)
|
|
|
|
|
stdenv.cross;
|
2010-01-20 16:49:07 +03:00
|
|
|
|
|
2014-03-12 09:25:54 +04:00
|
|
|
|
patchesCross = isCross: let
|
|
|
|
|
isDarwin = stdenv.isDarwin || (isCross && stdenv.cross.libc == "libSystem");
|
|
|
|
|
in
|
2011-11-04 22:48:25 +04: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.
|
2015-03-19 17:57:17 +03:00
|
|
|
|
# FIXME: drop this patch; it really isn't necessary, because
|
|
|
|
|
# OpenSSL already supports a ‘SSL_CERT_FILE’ variable.
|
2011-11-04 22:48:25 +04:00
|
|
|
|
./cert-file.patch
|
|
|
|
|
]
|
2012-01-06 03:46:17 +04:00
|
|
|
|
|
2012-01-23 16:59:18 +04:00
|
|
|
|
++ stdenv.lib.optionals (isCross && opensslCrossSystem == "hurd-x86")
|
2012-01-06 03:46:17 +04:00
|
|
|
|
[ ./cert-file-path-max.patch # merge with `cert-file.patch' eventually
|
|
|
|
|
./gnu.patch # submitted upstream
|
2012-01-23 16:59:18 +04:00
|
|
|
|
]
|
2012-01-06 03:46:17 +04:00
|
|
|
|
|
2012-08-13 16:05:27 +04:00
|
|
|
|
++ stdenv.lib.optionals (stdenv.system == "x86_64-kfreebsd-gnu")
|
|
|
|
|
[ ./gnu.patch
|
|
|
|
|
./kfreebsd-gnu.patch
|
|
|
|
|
]
|
|
|
|
|
|
2014-03-12 09:25:54 +04:00
|
|
|
|
++ stdenv.lib.optional isDarwin ./darwin-arch.patch;
|
2012-10-23 20:36:02 +04:00
|
|
|
|
|
2014-10-23 18:28:20 +04:00
|
|
|
|
extraPatches = stdenv.lib.optional stdenv.isCygwin ./1.0.1-cygwin64.patch;
|
2012-01-07 01:31:29 +04:00
|
|
|
|
in
|
|
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
|
inherit name;
|
|
|
|
|
|
|
|
|
|
src = fetchurl {
|
2012-02-26 21:22:50 +04:00
|
|
|
|
urls = [
|
|
|
|
|
"http://www.openssl.org/source/${name}.tar.gz"
|
|
|
|
|
"http://openssl.linux-mirror.org/source/${name}.tar.gz"
|
|
|
|
|
];
|
2015-03-19 17:57:17 +03:00
|
|
|
|
sha256 = "0x7gvyybmqm4lv62mlhlm80f1rn7il2qh8224rahqv0i15xhnpq9";
|
2012-01-07 01:31:29 +04:00
|
|
|
|
};
|
|
|
|
|
|
2014-10-23 18:28:20 +04:00
|
|
|
|
patches = (patchesCross false) ++ extraPatches;
|
2010-07-19 01:54:14 +04:00
|
|
|
|
|
2012-09-23 22:50:24 +04:00
|
|
|
|
buildInputs = stdenv.lib.optional withCryptodev cryptodevHeaders;
|
|
|
|
|
|
2012-12-28 22:20:09 +04:00
|
|
|
|
nativeBuildInputs = [ perl ];
|
2011-09-21 22:45:52 +04:00
|
|
|
|
|
2010-07-25 13:09:32 +04:00
|
|
|
|
# On x86_64-darwin, "./config" misdetects the system as
|
|
|
|
|
# "darwin-i386-cc". So specify the system type explicitly.
|
|
|
|
|
configureScript =
|
2013-02-20 13:18:26 +04:00
|
|
|
|
if stdenv.system == "x86_64-darwin" then "./Configure darwin64-x86_64-cc"
|
|
|
|
|
else if stdenv.system == "x86_64-solaris" then "./Configure solaris64-x86_64-gcc"
|
|
|
|
|
else "./config";
|
2011-09-21 22:45:52 +04:00
|
|
|
|
|
2012-11-23 20:24:35 +04:00
|
|
|
|
configureFlags = "shared --libdir=lib --openssldir=etc/ssl" +
|
2014-10-23 18:28:20 +04:00
|
|
|
|
stdenv.lib.optionalString withCryptodev " -DHAVE_CRYPTODEV -DUSE_CRYPTODEV_DIGESTS";
|
2014-05-29 16:47:07 +04:00
|
|
|
|
|
2014-10-23 18:28:20 +04:00
|
|
|
|
# CYGXXX: used to be set for cygwin with optionalString. Not needed
|
|
|
|
|
# anymore but kept to prevent rebuild.
|
|
|
|
|
preBuild = "";
|
2008-10-09 18:29:06 +04:00
|
|
|
|
|
2011-11-04 22:48:25 +04:00
|
|
|
|
makeFlags = "MANDIR=$(out)/share/man";
|
|
|
|
|
|
2012-11-23 20:24:35 +04:00
|
|
|
|
# Parallel building is broken in OpenSSL.
|
2014-08-08 11:46:57 +04:00
|
|
|
|
enableParallelBuilding = false;
|
2012-11-23 20:24:35 +04:00
|
|
|
|
|
2011-02-09 18:27:34 +03:00
|
|
|
|
postInstall =
|
|
|
|
|
''
|
|
|
|
|
# If we're building dynamic libraries, then don't install static
|
|
|
|
|
# libraries.
|
2012-12-18 21:03:26 +04:00
|
|
|
|
if [ -n "$(echo $out/lib/*.so $out/lib/*.dylib)" ]; then
|
2011-02-09 18:27:34 +03:00
|
|
|
|
rm $out/lib/*.a
|
|
|
|
|
fi
|
|
|
|
|
''; # */
|
|
|
|
|
|
2010-03-06 02:22:36 +03:00
|
|
|
|
crossAttrs = {
|
2012-01-07 01:31:29 +04:00
|
|
|
|
patches = patchesCross true;
|
|
|
|
|
|
2010-07-23 19:05:20 +04:00
|
|
|
|
preConfigure=''
|
2010-08-03 02:10:42 +04:00
|
|
|
|
# It's configure does not like --build or --host
|
|
|
|
|
export configureFlags="--libdir=lib --cross-compile-prefix=${stdenv.cross.config}- shared ${opensslCrossSystem}"
|
2010-03-06 02:22:36 +03:00
|
|
|
|
'';
|
2010-08-10 01:37:31 +04:00
|
|
|
|
|
|
|
|
|
postInstall = ''
|
2010-08-12 00:08:29 +04: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-10 01:37:31 +04:00
|
|
|
|
chmod -R +w $out
|
2010-08-12 00:08:29 +04: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-10 01:37:31 +04:00
|
|
|
|
'';
|
2010-08-03 02:10:42 +04:00
|
|
|
|
configureScript = "./Configure";
|
2014-03-11 01:27:54 +04:00
|
|
|
|
} // stdenv.lib.optionalAttrs (opensslCrossSystem == "darwin64-x86_64-cc") {
|
|
|
|
|
CC = "gcc";
|
2010-03-06 02:22:36 +03:00
|
|
|
|
};
|
|
|
|
|
|
2008-10-09 18:29:06 +04:00
|
|
|
|
meta = {
|
|
|
|
|
homepage = http://www.openssl.org/;
|
|
|
|
|
description = "A cryptographic library that implements the SSL and TLS protocols";
|
2011-09-21 22:45:52 +04:00
|
|
|
|
platforms = stdenv.lib.platforms.all;
|
|
|
|
|
maintainers = [ stdenv.lib.maintainers.simons ];
|
2012-01-04 23:48:08 +04:00
|
|
|
|
priority = 10; # resolves collision with ‘man-pages’
|
2008-10-09 18:29:06 +04:00
|
|
|
|
};
|
2010-07-19 01:54:14 +04:00
|
|
|
|
}
|