2012-09-23 19:50:24 +01:00
|
|
|
|
{ stdenv, fetchurl, perl
|
|
|
|
|
, withCryptodev ? false, cryptodevHeaders }:
|
2008-04-23 08:34:20 +01:00
|
|
|
|
|
2010-03-05 23:22:36 +00:00
|
|
|
|
let
|
2015-06-16 13:16:08 +01:00
|
|
|
|
name = "openssl-1.0.1o";
|
2011-09-21 19:48:04 +01:00
|
|
|
|
|
2010-03-05 23:22:36 +00:00
|
|
|
|
opensslCrossSystem = stdenv.lib.attrByPath [ "openssl" "system" ]
|
|
|
|
|
(throw "openssl needs its platform name cross building" null)
|
|
|
|
|
stdenv.cross;
|
2010-01-20 13:49:07 +00:00
|
|
|
|
|
2014-03-12 05:25:54 +00:00
|
|
|
|
patchesCross = isCross: let
|
|
|
|
|
isDarwin = stdenv.isDarwin || (isCross && stdenv.cross.libc == "libSystem");
|
2015-05-30 00:08:27 +01:00
|
|
|
|
in stdenv.lib.optional isDarwin ./darwin-arch.patch;
|
2012-10-23 17:36:02 +01:00
|
|
|
|
|
2014-10-23 15:28:20 +01:00
|
|
|
|
extraPatches = stdenv.lib.optional stdenv.isCygwin ./1.0.1-cygwin64.patch;
|
2012-01-06 21:31:29 +00:00
|
|
|
|
in
|
|
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
|
inherit name;
|
|
|
|
|
|
|
|
|
|
src = fetchurl {
|
2012-02-26 17:22:50 +00:00
|
|
|
|
urls = [
|
|
|
|
|
"http://www.openssl.org/source/${name}.tar.gz"
|
|
|
|
|
"http://openssl.linux-mirror.org/source/${name}.tar.gz"
|
|
|
|
|
];
|
2015-06-16 13:16:08 +01:00
|
|
|
|
sha1 = "b003e3382607ef2c6d85b51e4ed7a4c0a76b8d5a";
|
2012-01-06 21:31:29 +00:00
|
|
|
|
};
|
|
|
|
|
|
2014-10-23 15:28:20 +01:00
|
|
|
|
patches = (patchesCross false) ++ extraPatches;
|
2010-07-18 22:54:14 +01:00
|
|
|
|
|
2012-09-23 19:50:24 +01:00
|
|
|
|
buildInputs = stdenv.lib.optional withCryptodev cryptodevHeaders;
|
|
|
|
|
|
2012-12-28 18:20:09 +00:00
|
|
|
|
nativeBuildInputs = [ 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 =
|
2013-02-20 09:18:26 +00: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 19:45:52 +01:00
|
|
|
|
|
2012-11-23 16:24:35 +00:00
|
|
|
|
configureFlags = "shared --libdir=lib --openssldir=etc/ssl" +
|
2014-10-23 15:28:20 +01:00
|
|
|
|
stdenv.lib.optionalString withCryptodev " -DHAVE_CRYPTODEV -DUSE_CRYPTODEV_DIGESTS";
|
2014-05-29 13:47:07 +01:00
|
|
|
|
|
2011-11-04 18:48:25 +00:00
|
|
|
|
makeFlags = "MANDIR=$(out)/share/man";
|
|
|
|
|
|
2012-11-23 16:24:35 +00:00
|
|
|
|
# Parallel building is broken in OpenSSL.
|
2014-08-08 08:46:57 +01:00
|
|
|
|
enableParallelBuilding = false;
|
2012-11-23 16:24:35 +00:00
|
|
|
|
|
2011-02-09 15:27:34 +00:00
|
|
|
|
postInstall =
|
|
|
|
|
''
|
|
|
|
|
# If we're building dynamic libraries, then don't install static
|
|
|
|
|
# libraries.
|
2012-12-18 17:03:26 +00:00
|
|
|
|
if [ -n "$(echo $out/lib/*.so $out/lib/*.dylib)" ]; then
|
2015-06-16 13:17:25 +01:00
|
|
|
|
rm "$out/lib/"*.a
|
2011-02-09 15:27:34 +00:00
|
|
|
|
fi
|
2013-06-11 11:39:32 +01:00
|
|
|
|
|
|
|
|
|
# remove dependency on Perl at runtime
|
|
|
|
|
rm -rf $out/etc/ssl/misc
|
2015-06-16 13:17:25 +01:00
|
|
|
|
'';
|
2011-02-09 15:27:34 +00:00
|
|
|
|
|
2010-03-05 23:22:36 +00:00
|
|
|
|
crossAttrs = {
|
2012-01-06 21:31:29 +00:00
|
|
|
|
patches = patchesCross true;
|
|
|
|
|
|
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";
|
2014-03-10 21:27:54 +00:00
|
|
|
|
} // stdenv.lib.optionalAttrs (opensslCrossSystem == "darwin64-x86_64-cc") {
|
|
|
|
|
CC = "gcc";
|
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 ];
|
2012-01-04 19:48:08 +00:00
|
|
|
|
priority = 10; # resolves collision with ‘man-pages’
|
2008-10-09 15:29:06 +01:00
|
|
|
|
};
|
2010-07-18 22:54:14 +01:00
|
|
|
|
}
|