2014-12-30 01:04:16 -08:00
|
|
|
{ lib, stdenv, fetchurl, openssl, kerberos, db, gettext, pam, fixDarwinDylibNames }:
|
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 {
|
2014-12-30 01:04:16 -08:00
|
|
|
name = "cyrus-sasl-2.1.26${optionalString (kerberos == null) "-without-kerberos"}";
|
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
|
|
|
|
2014-09-24 09:28:26 -07:00
|
|
|
buildInputs =
|
2014-12-30 01:04:16 -08:00
|
|
|
[ openssl db gettext kerberos ]
|
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
|
|
|
|
2013-03-13 13:06:37 -07:00
|
|
|
patches = [ ./missing-size_t.patch ]; # https://bugzilla.redhat.com/show_bug.cgi?id=906519
|
|
|
|
patchFlags = "-p0";
|
|
|
|
|
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
|
|
|
|
--with-configdir=$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
|
|
|
|
2012-07-07 04:00:53 -07:00
|
|
|
meta = {
|
|
|
|
homepage = "http://cyrusimap.web.cmu.edu/";
|
|
|
|
description = "library for adding authentication support to connection-based protocols";
|
2014-12-30 01:04:16 -08:00
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = with maintainers; [ simons ];
|
2012-07-07 04:00:53 -07:00
|
|
|
};
|
2007-10-01 08:11:38 -07:00
|
|
|
}
|