summary refs log tree commit diff
path: root/pkgs/tools/networking/mailutils/default.nix
blob: 0ee4903270426821b7cf144b2ae35e9ecfc14b93 (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{ fetchurl, stdenv, gettext, gdbm, libtool, pam, readline
, ncurses, gnutls, mysql, guile, texinfo, gnum4, dejagnu, sendmailPath ? "/var/setuid-wrappers/sendmail" }:

/* TODO: Add GNU SASL, GNU GSSAPI, and FreeBidi.  */

stdenv.mkDerivation rec {
  name = "mailutils-2.2";

  src = fetchurl {
    url = "mirror://gnu/mailutils/${name}.tar.bz2";
    sha256 = "0szbqa12zqzldqyw97lxqax3ja2adis83i7brdfsxmrfw68iaf65";
  };

  patches = [ ./path-to-cat.patch ./no-gets.patch ];

  configureFlags = "--with-path-sendmail=${sendmailPath}";

  buildInputs =
   [ gettext gdbm libtool pam readline ncurses
     gnutls mysql guile texinfo gnum4 ]
   ++ stdenv.lib.optional doCheck dejagnu;

  # Tests fail since gcc 4.8
  doCheck = false;

  meta = {
    description = "Rich and powerful protocol-independent mail framework";

    longDescription = ''
      GNU Mailutils is a rich and powerful protocol-independent mail
      framework.  It contains a series of useful mail libraries, clients, and
      servers.  These are the primary mail utilities for the GNU system.  The
      central library is capable of handling electronic mail in various
      mailbox formats and protocols, both local and remote.  Specifically,
      this project contains a POP3 server, an IMAP4 server, and a Sieve mail
      filter.  It also provides a POSIX `mailx' client, and a collection of
      other handy tools.

      The GNU Mailutils libraries supply an ample set of primitives for
      handling electronic mail in programs written in C, C++, Python or
      Scheme.

      The utilities provided by Mailutils include imap4d and pop3d mail
      servers, mail reporting utility comsatd, general-purpose mail delivery
      agent maidag, mail filtering program sieve, and an implementation of MH
      message handling system.
    '';

    license = [ "LGPLv3+" /* libraries */  "GPLv3+" /* tools */ ];

    maintainers = [ stdenv.lib.maintainers.ludo ];

    homepage = http://www.gnu.org/software/mailutils/;

    # Some of the dependencies fail to build on {cyg,dar}win.
    platforms = stdenv.lib.platforms.gnu;
  };
}