2018-07-21 01:44:44 +01:00
|
|
|
{ fetchurl, stdenv, libidn, kerberos }:
|
2010-04-26 09:59:25 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2013-02-23 13:49:23 +00:00
|
|
|
name = "gsasl-1.8.0";
|
2010-04-26 09:59:25 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://gnu/gsasl/${name}.tar.gz";
|
2013-02-23 13:49:23 +00:00
|
|
|
sha256 = "1rci64cxvcfr8xcjpqc4inpfq7aw4snnsbf5xz7d30nhvv8n40ii";
|
2010-04-26 09:59:25 +01:00
|
|
|
};
|
|
|
|
|
2016-05-16 19:10:29 +01:00
|
|
|
buildInputs = [ libidn kerberos ];
|
2014-04-14 20:24:24 +01:00
|
|
|
|
2018-07-25 22:44:21 +01:00
|
|
|
configureFlags = [ "--with-gssapi-impl=mit" ];
|
2011-05-30 22:49:24 +01:00
|
|
|
|
2018-11-03 01:41:38 +00:00
|
|
|
doCheck = !stdenv.hostPlatform.isDarwin;
|
2010-04-26 09:59:25 +01:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "GNU SASL, Simple Authentication and Security Layer library";
|
|
|
|
|
|
|
|
longDescription =
|
|
|
|
'' GNU SASL is a library that implements the IETF Simple
|
|
|
|
Authentication and Security Layer (SASL) framework and
|
|
|
|
some SASL mechanisms. SASL is used in network servers
|
|
|
|
(e.g. IMAP, SMTP, etc.) to authenticate peers.
|
|
|
|
'';
|
|
|
|
|
2018-12-01 18:22:13 +00:00
|
|
|
homepage = https://www.gnu.org/software/gsasl/;
|
2014-06-19 05:19:00 +01:00
|
|
|
license = stdenv.lib.licenses.gpl3Plus;
|
2010-04-26 09:59:25 +01:00
|
|
|
|
2016-05-16 19:10:29 +01:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ shlevy ];
|
2010-04-26 09:59:25 +01:00
|
|
|
platforms = stdenv.lib.platforms.all;
|
|
|
|
};
|
|
|
|
}
|