summary refs log tree commit diff
path: root/pkgs/development/libraries/gsasl/default.nix
blob: 9f71bc5e202afbd613939e975ac9cffd52ffcd47 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{ fetchurl, stdenv, gss, libidn }:

stdenv.mkDerivation rec {
  name = "gsasl-1.6.1";

  src = fetchurl {
    url = "mirror://gnu/gsasl/${name}.tar.gz";
    sha256 = "02dmras3kqik08p14mpq0lj678w7wmmaxpcvdrx116wkcgspv2z6";
  };

  buildInputs = [ gss libidn ];

  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 = "GPLv3+";

    maintainers = with stdenv.lib.maintainers; [ bjg ludo ];
    platforms = stdenv.lib.platforms.all;
  };
}