fe009bcbc4
Signed-off-by: Shea Levy <shea@shealevy.com>
34 lines
1.1 KiB
Nix
34 lines
1.1 KiB
Nix
{ stdenv, fetchurl, openssl, db4, gettext, pam }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "cyrus-sasl-2.1.26";
|
|
|
|
src = fetchurl {
|
|
url = "ftp://ftp.cyrusimap.org/cyrus-sasl/${name}.tar.gz";
|
|
sha256 = "1hvvbcsg21nlncbgs0cgn3iwlnb3vannzwsp6rwvnn9ba4v53g4g";
|
|
};
|
|
|
|
buildInputs = [ openssl db4 gettext ] ++ stdenv.lib.optional stdenv.isLinux pam;
|
|
|
|
patches = [ ./missing-size_t.patch ]; # https://bugzilla.redhat.com/show_bug.cgi?id=906519
|
|
patchFlags = "-p0";
|
|
|
|
# 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
|
|
--with-saslauthd=/run/saslauthd
|
|
--enable-login
|
|
)
|
|
'';
|
|
|
|
installFlags = if stdenv.isDarwin then [ "framedir=$(out)/Library/Frameworks/SASL2.framework" ] else null;
|
|
|
|
meta = {
|
|
homepage = "http://cyrusimap.web.cmu.edu/";
|
|
description = "library for adding authentication support to connection-based protocols";
|
|
platforms = stdenv.lib.platforms.unix;
|
|
maintainers = [ stdenv.lib.maintainers.simons ];
|
|
};
|
|
}
|