2012-09-23 18:50:24 +00:00
|
|
|
|
{ stdenv, fetchurl, perl
|
|
|
|
|
, withCryptodev ? false, cryptodevHeaders }:
|
2008-04-23 07:34:20 +00:00
|
|
|
|
|
2015-06-20 21:26:47 +00:00
|
|
|
|
with stdenv.lib;
|
2010-03-05 23:22:36 +00:00
|
|
|
|
let
|
2015-06-20 21:26:47 +00:00
|
|
|
|
opensslCrossSystem = attrByPath [ "openssl" "system" ]
|
2010-03-05 23:22:36 +00:00
|
|
|
|
(throw "openssl needs its platform name cross building" null)
|
|
|
|
|
stdenv.cross;
|
2012-01-06 21:31:29 +00:00
|
|
|
|
in
|
2015-06-20 21:26:47 +00:00
|
|
|
|
stdenv.mkDerivation rec {
|
2015-12-04 19:23:59 +00:00
|
|
|
|
name = "openssl-1.0.1q";
|
2012-01-06 21:31:29 +00:00
|
|
|
|
|
|
|
|
|
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-12-04 19:23:59 +00:00
|
|
|
|
sha256 = "1dvz0hx7fjxag06b51pawy154y6d2xajm5rwxmfnlq7ax628nrdk";
|
2012-01-06 21:31:29 +00:00
|
|
|
|
};
|
|
|
|
|
|
2015-07-26 22:25:53 +00:00
|
|
|
|
outputs = [ "out" "man" ];
|
|
|
|
|
|
2015-06-20 21:26:47 +00:00
|
|
|
|
patches = optional stdenv.isCygwin ./1.0.1-cygwin64.patch
|
|
|
|
|
++ optional (stdenv.isDarwin || (stdenv ? cross && stdenv.cross.libc == "libSystem")) ./darwin-arch.patch;
|
2012-09-23 18:50:24 +00:00
|
|
|
|
|
2012-12-28 18:20:09 +00:00
|
|
|
|
nativeBuildInputs = [ perl ];
|
2015-06-20 21:26:47 +00:00
|
|
|
|
buildInputs = stdenv.lib.optional withCryptodev cryptodevHeaders;
|
2011-09-21 18:45:52 +00:00
|
|
|
|
|
2010-07-25 09:09:32 +00: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 18:45:52 +00:00
|
|
|
|
|
2015-06-20 21:26:47 +00:00
|
|
|
|
configureFlags = [
|
|
|
|
|
"shared"
|
|
|
|
|
"--libdir=lib"
|
|
|
|
|
"--openssldir=etc/ssl"
|
|
|
|
|
] ++ stdenv.lib.optionals withCryptodev [
|
|
|
|
|
"-DHAVE_CRYPTODEV"
|
|
|
|
|
"-DUSE_CRYPTODEV_DIGESTS"
|
|
|
|
|
];
|
2014-05-29 12:47:07 +00:00
|
|
|
|
|
2015-06-20 21:26:47 +00:00
|
|
|
|
makeFlags = [
|
|
|
|
|
"MANDIR=$(out)/share/man"
|
|
|
|
|
];
|
2011-11-04 18:48:25 +00:00
|
|
|
|
|
2012-11-23 16:24:35 +00:00
|
|
|
|
# Parallel building is broken in OpenSSL.
|
2014-08-08 07:46:57 +00:00
|
|
|
|
enableParallelBuilding = false;
|
2012-11-23 16:24:35 +00:00
|
|
|
|
|
2015-06-20 21:26:47 +00:00
|
|
|
|
postInstall = ''
|
|
|
|
|
# If we're building dynamic libraries, then don't install static
|
|
|
|
|
# libraries.
|
|
|
|
|
if [ -n "$(echo $out/lib/*.so $out/lib/*.dylib $out/lib/*.dll)" ]; then
|
|
|
|
|
rm "$out/lib/"*.a
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
# remove dependency on Perl at runtime
|
|
|
|
|
rm -r $out/etc/ssl/misc $out/bin/c_rehash
|
|
|
|
|
'';
|
|
|
|
|
|
|
|
|
|
postFixup = ''
|
|
|
|
|
# Check to make sure we don't depend on perl
|
|
|
|
|
if grep -r '${perl}' $out; then
|
|
|
|
|
echo "Found an erroneous dependency on perl ^^^" >&2
|
|
|
|
|
exit 1
|
|
|
|
|
fi
|
|
|
|
|
'';
|
2011-02-09 15:27:34 +00:00
|
|
|
|
|
2010-03-05 23:22:36 +00:00
|
|
|
|
crossAttrs = {
|
2015-10-30 14:38:07 +00:00
|
|
|
|
# upstream patch: https://rt.openssl.org/Ticket/Display.html?id=2558
|
|
|
|
|
postPatch = ''
|
|
|
|
|
sed -i -e 's/[$][(]CROSS_COMPILE[)]windres/$(WINDRES)/' Makefile.shared
|
|
|
|
|
'';
|
2010-07-23 15:05:20 +00:00
|
|
|
|
preConfigure=''
|
2010-08-02 22:10:42 +00:00
|
|
|
|
# It's configure does not like --build or --host
|
2015-06-20 21:26:47 +00:00
|
|
|
|
export configureFlags="${concatStringsSep " " (configureFlags ++ [ opensslCrossSystem ])}"
|
2015-10-30 14:38:07 +00:00
|
|
|
|
# WINDRES and RANLIB need to be prefixed when cross compiling;
|
|
|
|
|
# the openssl configure script doesn't do that for us
|
|
|
|
|
export WINDRES=${stdenv.cross.config}-windres
|
|
|
|
|
export RANLIB=${stdenv.cross.config}-ranlib
|
2010-03-05 23:22:36 +00:00
|
|
|
|
'';
|
2010-08-02 22:10:42 +00:00
|
|
|
|
configureScript = "./Configure";
|
2010-03-05 23:22:36 +00:00
|
|
|
|
};
|
|
|
|
|
|
2008-10-09 14:29:06 +00:00
|
|
|
|
meta = {
|
|
|
|
|
homepage = http://www.openssl.org/;
|
|
|
|
|
description = "A cryptographic library that implements the SSL and TLS protocols";
|
2011-09-21 18:45:52 +00: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 14:29:06 +00:00
|
|
|
|
};
|
2010-07-18 21:54:14 +00:00
|
|
|
|
}
|