nixpkgs/pkgs/development/libraries/gsasl/default.nix

34 lines
921 B
Nix
Raw Normal View History

2016-05-16 18:10:29 +00:00
{ fetchurl, stdenv, gss, libidn, kerberos }:
stdenv.mkDerivation rec {
2013-02-23 13:49:23 +00:00
name = "gsasl-1.8.0";
src = fetchurl {
url = "mirror://gnu/gsasl/${name}.tar.gz";
2013-02-23 13:49:23 +00:00
sha256 = "1rci64cxvcfr8xcjpqc4inpfq7aw4snnsbf5xz7d30nhvv8n40ii";
};
2016-05-16 18:10:29 +00:00
buildInputs = [ libidn kerberos ];
2016-05-16 18:10:29 +00:00
configureFlags = "--with-gssapi-impl=mit";
doCheck = true;
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.
'';
homepage = http://www.gnu.org/software/gsasl/;
license = stdenv.lib.licenses.gpl3Plus;
2016-05-16 18:10:29 +00:00
maintainers = with stdenv.lib.maintainers; [ shlevy ];
platforms = stdenv.lib.platforms.all;
};
}