2017-10-30 05:40:48 -07:00
|
|
|
{ lib, stdenv, fetchurl, openssl, openldap, kerberos, db, gettext,
|
|
|
|
pam, fixDarwinDylibNames, autoreconfHook, fetchpatch, enableLdap ? false }:
|
2010-04-10 13:27:17 -07:00
|
|
|
|
2014-12-30 01:04:16 -08:00
|
|
|
with stdenv.lib;
|
2012-07-07 04:00:53 -07:00
|
|
|
stdenv.mkDerivation rec {
|
2016-12-20 06:59:33 -08:00
|
|
|
name = "cyrus-sasl-${version}${optionalString (kerberos == null) "-without-kerberos"}";
|
2017-05-23 20:37:48 -07:00
|
|
|
version = "2.1.26";
|
2007-10-01 08:11:38 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
2013-03-12 02:05:49 -07:00
|
|
|
url = "ftp://ftp.cyrusimap.org/cyrus-sasl/${name}.tar.gz";
|
|
|
|
sha256 = "1hvvbcsg21nlncbgs0cgn3iwlnb3vannzwsp6rwvnn9ba4v53g4g";
|
2007-10-01 08:11:38 -07:00
|
|
|
};
|
2012-07-07 04:00:53 -07:00
|
|
|
|
2016-09-01 02:07:23 -07:00
|
|
|
outputs = [ "bin" "dev" "out" "man" "devdoc" ];
|
2015-10-18 05:48:14 -07:00
|
|
|
|
2014-09-24 09:28:26 -07:00
|
|
|
buildInputs =
|
2014-12-30 01:04:16 -08:00
|
|
|
[ openssl db gettext kerberos ]
|
2017-06-06 04:00:28 -07:00
|
|
|
++ lib.optional enableLdap openldap
|
2016-01-03 02:55:25 -08:00
|
|
|
++ lib.optional stdenv.isFreeBSD autoreconfHook
|
2014-09-24 09:28:26 -07:00
|
|
|
++ lib.optional stdenv.isLinux pam
|
|
|
|
++ lib.optional stdenv.isDarwin fixDarwinDylibNames;
|
2012-07-07 04:00:53 -07:00
|
|
|
|
FreeBSD: apr-util, cyrus-sasl, berkeley db, glib, gnutls, kerberos, libelf-freebsd, openldap, serf, guile, tet, shishi, gawk, gnugrep
2015-11-27 16:46:00 -08:00
|
|
|
patches = [
|
|
|
|
./missing-size_t.patch # https://bugzilla.redhat.com/show_bug.cgi?id=906519
|
2017-10-30 05:40:48 -07:00
|
|
|
(fetchpatch { # CVE-2013-4122
|
|
|
|
url = "http://sourceforge.net/projects/miscellaneouspa/files/glibc217/cyrus-sasl-2.1.26-glibc217-crypt.diff";
|
|
|
|
sha256 = "05l7dh1w9d5fvzg0pjwzqh0fy4ah8y5cv6v67s4ssbq8xwd4pkf2";
|
|
|
|
})
|
2016-01-03 02:55:25 -08:00
|
|
|
] ++ lib.optional stdenv.isFreeBSD (
|
FreeBSD: apr-util, cyrus-sasl, berkeley db, glib, gnutls, kerberos, libelf-freebsd, openldap, serf, guile, tet, shishi, gawk, gnugrep
2015-11-27 16:46:00 -08:00
|
|
|
fetchurl {
|
|
|
|
url = "http://www.linuxfromscratch.org/patches/blfs/svn/cyrus-sasl-2.1.26-fixes-3.patch";
|
|
|
|
sha256 = "1vh4pc2rxxm6yvykx0b7kg09jbcwcxwv5rs6yq2ag3y8p6a9x86w";
|
|
|
|
}
|
2016-01-03 02:55:25 -08:00
|
|
|
);
|
2013-03-13 13:06:37 -07:00
|
|
|
|
2015-01-09 10:21:04 -08:00
|
|
|
configureFlags = [
|
2016-04-16 10:44:32 -07:00
|
|
|
"--with-openssl=${openssl.dev}"
|
2017-06-06 04:00:28 -07:00
|
|
|
] ++ lib.optional enableLdap "--with-ldap=${openldap.dev}";
|
2015-01-09 10:21:04 -08:00
|
|
|
|
2012-07-07 04:00:53 -07:00
|
|
|
# Set this variable at build-time to make sure $out can be evaluated.
|
|
|
|
preConfigure = ''
|
|
|
|
configureFlagsArray=( --with-plugindir=$out/lib/sasl2
|
2013-03-13 13:06:37 -07:00
|
|
|
--with-saslauthd=/run/saslauthd
|
|
|
|
--enable-login
|
|
|
|
)
|
2012-07-07 04:00:53 -07:00
|
|
|
'';
|
|
|
|
|
2014-09-24 09:28:26 -07:00
|
|
|
installFlags = lib.optional stdenv.isDarwin [ "framedir=$(out)/Library/Frameworks/SASL2.framework" ];
|
2013-05-28 13:37:19 -07:00
|
|
|
|
2015-10-18 05:48:14 -07:00
|
|
|
postInstall = ''
|
|
|
|
for f in $out/lib/*.la $out/lib/sasl2/*.la; do
|
|
|
|
substituteInPlace $f --replace "${openssl.dev}/lib" "${openssl.out}/lib"
|
|
|
|
done
|
|
|
|
'';
|
|
|
|
|
2012-07-07 04:00:53 -07:00
|
|
|
meta = {
|
2017-08-01 13:03:30 -07:00
|
|
|
homepage = http://cyrusimap.web.cmu.edu/;
|
2016-06-20 03:53:46 -07:00
|
|
|
description = "Library for adding authentication support to connection-based protocols";
|
2014-12-30 01:04:16 -08:00
|
|
|
platforms = platforms.unix;
|
2012-07-07 04:00:53 -07:00
|
|
|
};
|
2007-10-01 08:11:38 -07:00
|
|
|
}
|