summary refs log tree commit diff
path: root/pkgs/tools/networking/mailutils
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2009-09-11 09:38:25 +0000
committerLudovic Courtès <ludo@gnu.org>2009-09-11 09:38:25 +0000
commit0d362f72ba769877387676ffd6123d52b36ef360 (patch)
tree095672b6be04928ec869061d5766913c1d65c423 /pkgs/tools/networking/mailutils
parent1d3e8274793849f47283f66fc4d6ddd565656da8 (diff)
downloadnixpkgs-0d362f72ba769877387676ffd6123d52b36ef360.tar
nixpkgs-0d362f72ba769877387676ffd6123d52b36ef360.tar.gz
nixpkgs-0d362f72ba769877387676ffd6123d52b36ef360.tar.bz2
nixpkgs-0d362f72ba769877387676ffd6123d52b36ef360.tar.lz
nixpkgs-0d362f72ba769877387676ffd6123d52b36ef360.tar.xz
nixpkgs-0d362f72ba769877387676ffd6123d52b36ef360.tar.zst
nixpkgs-0d362f72ba769877387676ffd6123d52b36ef360.zip
Add GNU Mailutils 2.1.
svn path=/nixpkgs/trunk/; revision=17041
Diffstat (limited to 'pkgs/tools/networking/mailutils')
-rw-r--r--pkgs/tools/networking/mailutils/default.nix48
1 files changed, 48 insertions, 0 deletions
diff --git a/pkgs/tools/networking/mailutils/default.nix b/pkgs/tools/networking/mailutils/default.nix
new file mode 100644
index 00000000000..43c804de8fb
--- /dev/null
+++ b/pkgs/tools/networking/mailutils/default.nix
@@ -0,0 +1,48 @@
+{ fetchurl, stdenv, gettext, gdbm, libtool, pam, readline
+, ncurses, gnutls, mysql, guile, texinfo, gnum4 }:
+
+/* TODO: Add GNU SASL, GNU GSSAPI, and FreeBidi.  */
+
+stdenv.mkDerivation rec {
+  name = "mailutils-2.1";
+
+  src = fetchurl {
+    url = "mirror://gnu/mailutils/${name}.tar.bz2";
+    sha256 = "09c4cb7w8z0gaxsqg1wgn2w8kgmqcqpahv7mw3ygw3nagcfh84cs";
+  };
+
+  buildInputs = [
+    gettext gdbm libtool pam readline ncurses
+    gnutls mysql guile texinfo gnum4
+  ];
+
+  doCheck = true;
+
+  meta = {
+    description = "GNU Mailutils is a 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.
+    '';
+
+    licenses = [ "LGPLv3+" /* libraries */  "GPLv3+" /* tools */ ];
+
+    maintainers = [ stdenv.lib.maintainers.ludo ];
+  };
+}