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