2012-09-23 19:50:24 +01:00
|
|
|
|
{ stdenv, fetchurl, perl
|
|
|
|
|
, withCryptodev ? false, cryptodevHeaders }:
|
2008-04-23 08:34:20 +01:00
|
|
|
|
|
2015-06-20 22:26:47 +01:00
|
|
|
|
with stdenv.lib;
|
2010-03-05 23:22:36 +00:00
|
|
|
|
let
|
2015-06-20 22:26:47 +01: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 22:26:47 +01: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-06-20 22:26:47 +01:00
|
|
|
|
patches = optional stdenv.isCygwin ./1.0.1-cygwin64.patch
|
|
|
|
|
++ optional (stdenv.isDarwin || (stdenv ? cross && stdenv.cross.libc == "libSystem")) ./darwin-arch.patch;
|
2010-07-18 22:54:14 +01:00
|
|
|
|
|
2013-06-11 13:28:49 +01:00
|
|
|
|
outputs = [ "dev" "out" "man" "bin" ];
|
2014-08-27 00:14:09 +01:00
|
|
|
|
setOutputFlags = false;
|
2013-06-11 13:28:49 +01:00
|
|
|
|
|
2012-12-28 18:20:09 +00:00
|
|
|
|
nativeBuildInputs = [ perl ];
|
2015-06-20 22:26:47 +01:00
|
|
|
|
buildInputs = stdenv.lib.optional withCryptodev cryptodevHeaders;
|
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
|
|
|
|
|
2015-06-20 22:26:47 +01:00
|
|
|
|
configureFlags = [
|
|
|
|
|
"shared"
|
|
|
|
|
"--libdir=lib"
|
|
|
|
|
"--openssldir=etc/ssl"
|
|
|
|
|
] ++ stdenv.lib.optionals withCryptodev [
|
|
|
|
|
"-DHAVE_CRYPTODEV"
|
|
|
|
|
"-DUSE_CRYPTODEV_DIGESTS"
|
|
|
|
|
];
|
2008-10-09 15:29:06 +01:00
|
|
|
|
|
2015-10-03 15:28:39 +01:00
|
|
|
|
makeFlags = [ "MANDIR=$(man)/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 08:46:57 +01:00
|
|
|
|
enableParallelBuilding = false;
|
2012-11-23 16:24:35 +00:00
|
|
|
|
|
2015-06-20 22:26:47 +01: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
|
2012-08-25 04:42:33 +01:00
|
|
|
|
|
2015-10-03 15:28:39 +01:00
|
|
|
|
mkdir -p $bin
|
|
|
|
|
mv $out/bin $bin/
|
2012-08-25 04:42:33 +01:00
|
|
|
|
|
2015-10-03 15:28:39 +01:00
|
|
|
|
mkdir $dev
|
|
|
|
|
mv $out/include $dev/
|
2011-02-09 15:27:34 +00:00
|
|
|
|
|
2015-06-20 22:26:47 +01:00
|
|
|
|
# remove dependency on Perl at runtime
|
2015-10-03 15:28:39 +01:00
|
|
|
|
rm -r $out/etc/ssl/misc
|
2015-06-20 22:26:47 +01:00
|
|
|
|
'';
|
2012-01-06 21:31:29 +00:00
|
|
|
|
|
2015-06-20 22:26:47 +01:00
|
|
|
|
postFixup = ''
|
2015-10-03 15:28:39 +01:00
|
|
|
|
# Check to make sure the main output doesn't depend on perl
|
2015-06-20 22:26:47 +01:00
|
|
|
|
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 16:05:20 +01:00
|
|
|
|
preConfigure=''
|
2010-08-02 23:10:42 +01:00
|
|
|
|
# It's configure does not like --build or --host
|
2015-06-20 22:26:47 +01: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 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 ];
|
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
|
|
|
|
}
|