2018-11-21 03:41:16 +00:00
|
|
|
{ lib, stdenv, fetchurl, openssl, openldap, kerberos, db, gettext
|
|
|
|
, pam, fixDarwinDylibNames, autoreconfHook, fetchpatch, enableLdap ? false
|
|
|
|
, buildPackages }:
|
2010-04-10 20:27:17 +00:00
|
|
|
|
2014-12-30 09:04:16 +00:00
|
|
|
with stdenv.lib;
|
2012-07-07 11:00:53 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2016-12-20 14:59:33 +00:00
|
|
|
name = "cyrus-sasl-${version}${optionalString (kerberos == null) "-without-kerberos"}";
|
2018-11-21 03:41:16 +00:00
|
|
|
version = "2.1.27";
|
2007-10-01 15:11:38 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2013-03-12 09:05:49 +00:00
|
|
|
url = "ftp://ftp.cyrusimap.org/cyrus-sasl/${name}.tar.gz";
|
2018-11-21 03:41:16 +00:00
|
|
|
sha256 = "1m85zcpgfdhm43cavpdkhb1s2zq1b31472hq1w1gs3xh94anp1i6";
|
2007-10-01 15:11:38 +00:00
|
|
|
};
|
2012-07-07 11:00:53 +00:00
|
|
|
|
2016-09-01 09:07:23 +00:00
|
|
|
outputs = [ "bin" "dev" "out" "man" "devdoc" ];
|
2015-10-18 12:48:14 +00:00
|
|
|
|
2018-11-21 03:41:16 +00:00
|
|
|
depsBuildBuild = [ buildPackages.stdenv.cc ];
|
|
|
|
nativeBuildInputs = [ autoreconfHook fixDarwinDylibNames ];
|
2014-09-24 16:28:26 +00:00
|
|
|
buildInputs =
|
2014-12-30 09:04:16 +00:00
|
|
|
[ openssl db gettext kerberos ]
|
2017-06-06 11:00:28 +00:00
|
|
|
++ lib.optional enableLdap openldap
|
2018-11-21 03:41:16 +00:00
|
|
|
++ lib.optional stdenv.isLinux pam;
|
2012-07-07 11:00:53 +00:00
|
|
|
|
FreeBSD: apr-util, cyrus-sasl, berkeley db, glib, gnutls, kerberos, libelf-freebsd, openldap, serf, guile, tet, shishi, gawk, gnugrep
2015-11-28 00:46:00 +00:00
|
|
|
patches = [
|
|
|
|
./missing-size_t.patch # https://bugzilla.redhat.com/show_bug.cgi?id=906519
|
2018-11-21 03:41:16 +00:00
|
|
|
./cyrus-sasl-ac-try-run-fix.patch
|
2016-01-03 10:55:25 +00: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-28 00:46:00 +00:00
|
|
|
fetchurl {
|
|
|
|
url = "http://www.linuxfromscratch.org/patches/blfs/svn/cyrus-sasl-2.1.26-fixes-3.patch";
|
|
|
|
sha256 = "1vh4pc2rxxm6yvykx0b7kg09jbcwcxwv5rs6yq2ag3y8p6a9x86w";
|
|
|
|
}
|
2016-01-03 10:55:25 +00:00
|
|
|
);
|
2013-03-13 20:06:37 +00:00
|
|
|
|
2015-01-09 18:21:04 +00:00
|
|
|
configureFlags = [
|
2016-04-16 17:44:32 +00:00
|
|
|
"--with-openssl=${openssl.dev}"
|
2018-09-21 13:33:57 +00:00
|
|
|
"--with-plugindir=${placeholder "out"}/lib/sasl2"
|
|
|
|
"--with-saslauthd=/run/saslauthd"
|
|
|
|
"--enable-login"
|
|
|
|
"--enable-shared"
|
2017-06-06 11:00:28 +00:00
|
|
|
] ++ lib.optional enableLdap "--with-ldap=${openldap.dev}";
|
2015-01-09 18:21:04 +00:00
|
|
|
|
2014-09-24 16:28:26 +00:00
|
|
|
installFlags = lib.optional stdenv.isDarwin [ "framedir=$(out)/Library/Frameworks/SASL2.framework" ];
|
2013-05-28 20:37:19 +00:00
|
|
|
|
2015-10-18 12:48:14 +00: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 11:00:53 +00:00
|
|
|
meta = {
|
2018-09-21 13:33:57 +00:00
|
|
|
homepage = https://www.cyrusimap.org/sasl;
|
2016-06-20 10:53:46 +00:00
|
|
|
description = "Library for adding authentication support to connection-based protocols";
|
2014-12-30 09:04:16 +00:00
|
|
|
platforms = platforms.unix;
|
2018-09-30 09:33:34 +00:00
|
|
|
license = licenses.bsdOriginal;
|
2012-07-07 11:00:53 +00:00
|
|
|
};
|
2007-10-01 15:11:38 +00:00
|
|
|
}
|