2022-10-20 09:06:17 +00:00
|
|
|
{ lib, stdenv, fetchurl, fetchpatch, openssl, openldap, libkrb5, db, gettext
|
2022-09-24 18:36:34 +00:00
|
|
|
, pam, libxcrypt, fixDarwinDylibNames, autoreconfHook, enableLdap ? false
|
2022-02-23 10:54:17 +00:00
|
|
|
, buildPackages, pruneLibtoolFiles, nixosTests }:
|
2010-04-10 20:27:17 +00:00
|
|
|
|
2012-07-07 11:00:53 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "cyrus-sasl";
|
2022-02-22 19:37:00 +00:00
|
|
|
version = "2.1.28";
|
2007-10-01 15:11:38 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-01-23 09:56:10 +00:00
|
|
|
urls =
|
2020-11-06 18:27:24 +00:00
|
|
|
[ "https://github.com/cyrusimap/${pname}/releases/download/${pname}-${version}/${pname}-${version}.tar.gz"
|
|
|
|
"http://www.cyrusimap.org/releases/${pname}-${version}.tar.gz"
|
2019-08-15 12:41:18 +00:00
|
|
|
"http://www.cyrusimap.org/releases/old/${pname}-${version}.tar.gz"
|
2019-01-23 09:56:10 +00:00
|
|
|
];
|
2022-02-22 19:37:00 +00:00
|
|
|
sha256 = "sha256-fM/Gq9Ae1nwaCSSzU+Um8bdmsh9C1FYu5jWo6/xbs4w=";
|
2007-10-01 15:11:38 +00:00
|
|
|
};
|
2012-07-07 11:00:53 +00:00
|
|
|
|
2022-02-22 19:37:00 +00:00
|
|
|
patches = [
|
|
|
|
# Fix cross-compilation
|
|
|
|
./cyrus-sasl-ac-try-run-fix.patch
|
2022-10-20 09:06:17 +00:00
|
|
|
# make compatible with openssl3. can probably be dropped with any release after 2.1.28
|
|
|
|
(fetchpatch {
|
2023-05-24 01:22:17 +00:00
|
|
|
url = "https://github.com/cyrusimap/cyrus-sasl/compare/cb549ef71c5bb646fe583697ebdcaba93267a237...dfaa62392e7caecc6ecf0097b4d73738ec4fc0a8.patch";
|
|
|
|
hash = "sha256-pc0cZqj1QoxDqgd/j/5q3vWONEPrTm4Pr6MzHlfjRCc=";
|
2022-10-20 09:06:17 +00:00
|
|
|
})
|
2022-02-22 19:37:00 +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 ];
|
2020-10-26 07:17:14 +00:00
|
|
|
nativeBuildInputs = [ autoreconfHook pruneLibtoolFiles ]
|
|
|
|
++ lib.optional stdenv.hostPlatform.isDarwin fixDarwinDylibNames;
|
2014-09-24 16:28:26 +00:00
|
|
|
buildInputs =
|
2022-09-24 18:36:34 +00:00
|
|
|
[ openssl db gettext libkrb5 libxcrypt ]
|
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
|
|
|
|
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
|
|
|
|
2022-10-06 16:38:53 +00:00
|
|
|
installFlags = lib.optionals stdenv.isDarwin [ "framedir=$(out)/Library/Frameworks/SASL2.framework" ];
|
2013-05-28 20:37:19 +00:00
|
|
|
|
2022-02-23 10:54:17 +00:00
|
|
|
passthru.tests = {
|
|
|
|
inherit (nixosTests) parsedmarc postfix;
|
|
|
|
};
|
|
|
|
|
2023-01-26 17:31:02 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 01:11:51 +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
|
|
|
}
|