2022-11-21 17:40:18 +00:00
|
|
|
{ lib, stdenv, fetchurl, fetchpatch, openssl, openldap, libkrb5, db, gettext
|
2022-10-30 15:09:59 +00:00
|
|
|
, pam, libxcrypt, fixDarwinDylibNames, autoreconfHook, enableLdap ? false
|
2022-04-15 01:41:22 +00:00
|
|
|
, buildPackages, pruneLibtoolFiles, nixosTests }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "cyrus-sasl";
|
2022-04-15 01:41:22 +00:00
|
|
|
version = "2.1.28";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
urls =
|
2020-12-03 08:41:04 +00:00
|
|
|
[ "https://github.com/cyrusimap/${pname}/releases/download/${pname}-${version}/${pname}-${version}.tar.gz"
|
|
|
|
"http://www.cyrusimap.org/releases/${pname}-${version}.tar.gz"
|
2020-04-24 23:36:52 +00:00
|
|
|
"http://www.cyrusimap.org/releases/old/${pname}-${version}.tar.gz"
|
|
|
|
];
|
2022-04-15 01:41:22 +00:00
|
|
|
sha256 = "sha256-fM/Gq9Ae1nwaCSSzU+Um8bdmsh9C1FYu5jWo6/xbs4w=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2022-04-15 01:41:22 +00:00
|
|
|
patches = [
|
|
|
|
# Fix cross-compilation
|
|
|
|
./cyrus-sasl-ac-try-run-fix.patch
|
2022-11-21 17:40:18 +00:00
|
|
|
# make compatible with openssl3. can probably be dropped with any release after 2.1.28
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://github.com/cyrusimap/cyrus-sasl/compare/cb549ef71c5bb646fe583697ebdcaba93267a237...c2bd3afbca57f176d8c650670ce371444bb7fcc0.patch";
|
|
|
|
hash = "sha256-bYeIkvle1Ms7Lnoob4eLd4RbPFHtPkKRZvfHNCBJY/s=";
|
|
|
|
})
|
2022-04-15 01:41:22 +00:00
|
|
|
];
|
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
outputs = [ "bin" "dev" "out" "man" "devdoc" ];
|
|
|
|
|
|
|
|
depsBuildBuild = [ buildPackages.stdenv.cc ];
|
2020-11-12 09:05:59 +00:00
|
|
|
nativeBuildInputs = [ autoreconfHook pruneLibtoolFiles ]
|
|
|
|
++ lib.optional stdenv.hostPlatform.isDarwin fixDarwinDylibNames;
|
2020-04-24 23:36:52 +00:00
|
|
|
buildInputs =
|
2022-10-30 15:09:59 +00:00
|
|
|
[ openssl db gettext libkrb5 libxcrypt ]
|
2020-04-24 23:36:52 +00:00
|
|
|
++ lib.optional enableLdap openldap
|
|
|
|
++ lib.optional stdenv.isLinux pam;
|
|
|
|
|
|
|
|
configureFlags = [
|
|
|
|
"--with-openssl=${openssl.dev}"
|
|
|
|
"--with-plugindir=${placeholder "out"}/lib/sasl2"
|
|
|
|
"--with-saslauthd=/run/saslauthd"
|
|
|
|
"--enable-login"
|
|
|
|
"--enable-shared"
|
|
|
|
] ++ lib.optional enableLdap "--with-ldap=${openldap.dev}";
|
|
|
|
|
2022-10-30 15:09:59 +00:00
|
|
|
installFlags = lib.optionals stdenv.isDarwin [ "framedir=$(out)/Library/Frameworks/SASL2.framework" ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2022-04-15 01:41:22 +00:00
|
|
|
passthru.tests = {
|
|
|
|
inherit (nixosTests) parsedmarc postfix;
|
|
|
|
};
|
|
|
|
|
2023-02-02 18:25:31 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
homepage = "https://www.cyrusimap.org/sasl";
|
|
|
|
description = "Library for adding authentication support to connection-based protocols";
|
|
|
|
platforms = platforms.unix;
|
|
|
|
license = licenses.bsdOriginal;
|
|
|
|
};
|
|
|
|
}
|