2013-01-13 15:37:32 +01:00
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
|
|
|
;;; Copyright © 2013 Ludovic Courtès <ludo@gnu.org>
|
|
|
|
;;;
|
|
|
|
;;; This file is part of GNU Guix.
|
|
|
|
;;;
|
|
|
|
;;; GNU Guix is free software; you can redistribute it and/or modify it
|
|
|
|
;;; under the terms of the GNU General Public License as published by
|
|
|
|
;;; the Free Software Foundation; either version 3 of the License, or (at
|
|
|
|
;;; your option) any later version.
|
|
|
|
;;;
|
|
|
|
;;; GNU Guix is distributed in the hope that it will be useful, but
|
|
|
|
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;;; GNU General Public License for more details.
|
|
|
|
;;;
|
|
|
|
;;; You should have received a copy of the GNU General Public License
|
|
|
|
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2013-09-22 21:01:40 +02:00
|
|
|
(define-module (gnu packages mail)
|
2013-01-18 01:06:47 +01:00
|
|
|
#:use-module (gnu packages)
|
2013-09-22 21:56:36 +02:00
|
|
|
#:use-module (gnu packages autotools)
|
2013-09-23 12:50:59 +02:00
|
|
|
#:use-module (gnu packages cyrus-sasl)
|
2013-09-22 21:56:36 +02:00
|
|
|
#:use-module (gnu packages dejagnu)
|
2013-01-18 01:06:24 +01:00
|
|
|
#:use-module (gnu packages gdbm)
|
2013-10-06 13:31:02 +02:00
|
|
|
#:use-module (gnu packages gnupg)
|
2013-09-22 21:56:36 +02:00
|
|
|
#:use-module (gnu packages gnutls)
|
2013-01-18 01:06:24 +01:00
|
|
|
#:use-module (gnu packages guile)
|
2013-09-22 21:56:36 +02:00
|
|
|
#:use-module (gnu packages linux)
|
|
|
|
#:use-module (gnu packages m4)
|
|
|
|
#:use-module (gnu packages mysql)
|
2013-01-18 01:06:24 +01:00
|
|
|
#:use-module (gnu packages ncurses)
|
2013-09-22 21:56:36 +02:00
|
|
|
#:use-module (gnu packages openssl)
|
2013-09-22 22:30:18 +02:00
|
|
|
#:use-module (gnu packages perl)
|
2013-01-18 01:06:24 +01:00
|
|
|
#:use-module (gnu packages readline)
|
|
|
|
#:use-module (gnu packages texinfo)
|
2013-09-22 21:56:36 +02:00
|
|
|
#:use-module ((guix licenses)
|
|
|
|
#:select (gpl2+ gpl3+ lgpl3+))
|
2013-01-13 15:37:32 +01:00
|
|
|
#:use-module (guix packages)
|
|
|
|
#:use-module (guix download)
|
|
|
|
#:use-module (guix build-system gnu))
|
|
|
|
|
|
|
|
(define-public mailutils
|
|
|
|
(package
|
|
|
|
(name "mailutils")
|
|
|
|
(version "2.2")
|
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "mirror://gnu/mailutils/mailutils-"
|
|
|
|
version ".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
gnu: Use the 'patches' field of <origin>.
* gnu/packages/apr.scm,
gnu/packages/autotools.scm,
gnu/packages/avahi.scm,
gnu/packages/cdrom.scm,
gnu/packages/cmake.scm,
gnu/packages/cpio.scm,
gnu/packages/cross-base.scm,
gnu/packages/emacs.scm,
gnu/packages/flex.scm,
gnu/packages/fontutils.scm,
gnu/packages/glib.scm,
gnu/packages/grub.scm,
gnu/packages/guile.scm,
gnu/packages/idutils.scm,
gnu/packages/libevent.scm,
gnu/packages/linux.scm,
gnu/packages/mail.scm,
gnu/packages/make-bootstrap.scm,
gnu/packages/mp3.scm,
gnu/packages/oggvorbis.scm,
gnu/packages/pdf.scm,
gnu/packages/plotutils.scm,
gnu/packages/qemu.scm,
gnu/packages/recutils.scm,
gnu/packages/rush.scm,
gnu/packages/scheme.scm,
gnu/packages/system.scm,
gnu/packages/tcsh.scm,
gnu/packages/valgrind.scm,
gnu/packages/vpn.scm,
gnu/packages/w3m: Use the 'patches' field of <origin> instead of
adding a patch as input plus using #:patches.
2013-10-09 00:09:04 +02:00
|
|
|
"0szbqa12zqzldqyw97lxqax3ja2adis83i7brdfsxmrfw68iaf65"))
|
|
|
|
(patches (list (search-patch "m4-gets-undeclared.patch")))))
|
2013-01-13 15:37:32 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(arguments
|
|
|
|
'(;; TODO: Add `--with-sql'.
|
|
|
|
#:phases (alist-cons-before
|
|
|
|
'build 'pre-build
|
|
|
|
(lambda _
|
|
|
|
;; Use Guile 2.0's public API.
|
|
|
|
(substitute* "libmu_scm/mu_message.c"
|
|
|
|
(("scm_i_string_length")
|
|
|
|
"scm_c_string_length"))
|
|
|
|
|
|
|
|
;; This file should be generated to use the right
|
|
|
|
;; value of $(libdir) et al.
|
|
|
|
(delete-file "libmu_scm/mailutils.scm")
|
|
|
|
|
|
|
|
;; Use the right file name for `cat'.
|
|
|
|
(substitute* "testsuite/lib/mailutils.exp"
|
|
|
|
(("/bin/cat")
|
|
|
|
(which "cat"))))
|
|
|
|
%standard-phases)
|
|
|
|
#:parallel-tests? #f))
|
|
|
|
(inputs
|
|
|
|
`(("dejagnu" ,dejagnu)
|
|
|
|
("m4" ,m4)
|
|
|
|
("texinfo" ,texinfo)
|
|
|
|
("guile" ,guile-2.0)
|
|
|
|
("gnutls" ,gnutls)
|
|
|
|
("ncurses" ,ncurses)
|
|
|
|
("readline" ,readline)
|
|
|
|
("linux-pam" ,linux-pam)
|
|
|
|
("libtool" ,libtool)
|
gnu: Use the 'patches' field of <origin>.
* gnu/packages/apr.scm,
gnu/packages/autotools.scm,
gnu/packages/avahi.scm,
gnu/packages/cdrom.scm,
gnu/packages/cmake.scm,
gnu/packages/cpio.scm,
gnu/packages/cross-base.scm,
gnu/packages/emacs.scm,
gnu/packages/flex.scm,
gnu/packages/fontutils.scm,
gnu/packages/glib.scm,
gnu/packages/grub.scm,
gnu/packages/guile.scm,
gnu/packages/idutils.scm,
gnu/packages/libevent.scm,
gnu/packages/linux.scm,
gnu/packages/mail.scm,
gnu/packages/make-bootstrap.scm,
gnu/packages/mp3.scm,
gnu/packages/oggvorbis.scm,
gnu/packages/pdf.scm,
gnu/packages/plotutils.scm,
gnu/packages/qemu.scm,
gnu/packages/recutils.scm,
gnu/packages/rush.scm,
gnu/packages/scheme.scm,
gnu/packages/system.scm,
gnu/packages/tcsh.scm,
gnu/packages/valgrind.scm,
gnu/packages/vpn.scm,
gnu/packages/w3m: Use the 'patches' field of <origin> instead of
adding a patch as input plus using #:patches.
2013-10-09 00:09:04 +02:00
|
|
|
("gdbm" ,gdbm)))
|
2013-01-13 15:37:32 +01:00
|
|
|
(home-page "http://www.gnu.org/software/mailutils/")
|
gnu: Use synopses from the Womb.
* gnu/packages/algebra.scm,
gnu/packages/aspell.scm,
gnu/packages/autotools.scm,
gnu/packages/base.scm,
gnu/packages/bash.scm,
gnu/packages/bison.scm,
gnu/packages/cdrom.scm,
gnu/packages/cflow.scm,
gnu/packages/compression.scm,
gnu/packages/cpio.scm,
gnu/packages/cppi.scm,
gnu/packages/ddrescue.scm,
gnu/packages/dejagnu.scm,
gnu/packages/ed.scm,
gnu/packages/emacs.scm,
gnu/packages/fdisk.scm,
gnu/packages/gawk.scm,
gnu/packages/gcc.scm,
packages/gcc.scm, b/gnu/packages/gcc.scm,
4b982 100644
s/gcc.scm,
s/gcc.scm,
@@
%standard-phases)))))
`((gcc-libc . ,(assoc-ref inputs "libc"))))
The GNU Compiler Collection")
GNU Compiler Collection")
n
ompiler Collection includes compiler front ends for C, C++,
tran, OpenMP for C/C++/Fortran, Java, and Ada, as well as
gnu/packages/gdb.scm,
gnu/packages/gettext.scm,
gnu/packages/ghostscript.scm,
gnu/packages/glib.scm,
gnu/packages/global.scm,
gnu/packages/gnupg.scm,
gnu/packages/gnutls.scm,
gnu/packages/gperf.scm,
gnu/packages/gprolog.scm,
gnu/packages/groff.scm,
gnu/packages/grub.scm,
gnu/packages/gsasl.scm,
gnu/packages/guile.scm,
gnu/packages/help2man.scm,
gnu/packages/idutils.scm,
gnu/packages/indent.scm,
gnu/packages/less.scm,
gnu/packages/libidn.scm,
gnu/packages/libsigsegv.scm,
gnu/packages/libunistring.scm,
gnu/packages/linux.scm,
gnu/packages/lsh.scm,
gnu/packages/m4.scm,
gnu/packages/mailutils.scm,
gnu/packages/multiprecision.scm,
gnu/packages/nano.scm,
gnu/packages/ncurses.scm,
gnu/packages/nettle.scm,
gnu/packages/oggvorbis.scm,
gnu/packages/parted.scm,
gnu/packages/pth.scm,
gnu/packages/readline.scm,
gnu/packages/recutils.scm,
gnu/packages/scheme.scm,
gnu/packages/screen.scm,
gnu/packages/shishi.scm,
gnu/packages/smalltalk.scm,
gnu/packages/system.scm,
gnu/packages/texinfo.scm,
gnu/packages/time.scm,
gnu/packages/wdiff.scm,
gnu/packages/wget.scm,
gnu/packages/which.scm: Use synopses from the Womb.
2013-04-17 18:04:25 +02:00
|
|
|
(synopsis "Utilities and library for reading and serving mail")
|
2013-01-13 15:37:32 +01:00
|
|
|
(description
|
2013-12-01 22:33:23 +01:00
|
|
|
"GNU Mailutils is a collection of programs for managing, viewing and
|
|
|
|
processing electronic mail. It contains both utilities and server daemons
|
|
|
|
and all operate in a protocol-agnostic way. The underlying libraries are
|
|
|
|
also available, simplifying the addition of mail capabilities to new
|
|
|
|
software.")
|
2013-01-13 15:37:32 +01:00
|
|
|
(license
|
|
|
|
;; Libraries are under LGPLv3+, and programs under GPLv3+.
|
|
|
|
(list gpl3+ lgpl3+))))
|
2013-09-22 21:56:36 +02:00
|
|
|
|
|
|
|
(define-public fetchmail
|
|
|
|
(package
|
|
|
|
(name "fetchmail")
|
|
|
|
(version "6.3.26")
|
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "mirror://sourceforge/fetchmail/branch_6.3/fetchmail-"
|
|
|
|
version ".tar.xz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"0l78ayvi9dm8hd190gl139cs2xqsrf7r9ncilslw20mgvd6cbd3r"))))
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
(inputs
|
|
|
|
`(("openssl" ,openssl)))
|
|
|
|
(arguments
|
|
|
|
`(#:configure-flags (list (string-append "--with-ssl="
|
|
|
|
(assoc-ref %build-inputs "openssl")))))
|
|
|
|
(home-page "http://fetchmail.berlios.de/")
|
|
|
|
(synopsis "Remote-mailr etrieval and forwarding utility")
|
|
|
|
(description
|
|
|
|
"Fetchmail is a full-featured, robust, well-documented remote-mail
|
|
|
|
retrieval and forwarding utility intended to be used over on-demand
|
|
|
|
TCP/IP links (such as SLIP or PPP connections). It supports every
|
|
|
|
remote-mail protocol now in use on the Internet: POP2, POP3, RPOP, APOP,
|
|
|
|
KPOP, all flavors of IMAP, ETRN, and ODMR. It can even support IPv6
|
|
|
|
and IPSEC.
|
|
|
|
|
|
|
|
Fetchmail retrieves mail from remote mail servers and forwards it via SMTP,
|
|
|
|
so it can then be read by normal mail user agents such as mutt, elm
|
|
|
|
or BSD Mail. It allows all your system MTA's filtering, forwarding, and
|
|
|
|
aliasing facilities to work just as they would on normal mail.")
|
|
|
|
(license gpl2+))) ; most files are actually public domain or x11
|
2013-09-22 22:30:18 +02:00
|
|
|
|
|
|
|
(define-public mutt
|
|
|
|
(package
|
|
|
|
(name "mutt")
|
|
|
|
(version "1.5.21")
|
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "ftp://ftp.mutt.org/mutt/devel/mutt-"
|
|
|
|
version ".tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"1864cwz240gh0zy56fb47qqzwyf6ghg01037rb4p2kqgimpg6h91"))))
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
(inputs
|
2013-09-23 12:50:59 +02:00
|
|
|
`(("cyrus-sasl" ,cyrus-sasl)
|
2013-10-06 13:31:02 +02:00
|
|
|
("gpgme" ,gpgme)
|
2013-09-23 12:50:59 +02:00
|
|
|
("ncurses" ,ncurses)
|
2013-09-22 22:30:18 +02:00
|
|
|
("openssl" ,openssl)
|
|
|
|
("perl" ,perl)))
|
|
|
|
(arguments
|
|
|
|
`(#:configure-flags '("--enable-smtp"
|
|
|
|
"--enable-imap"
|
|
|
|
"--enable-pop"
|
2013-10-06 13:31:02 +02:00
|
|
|
"--enable-gpgme"
|
2013-09-22 22:30:18 +02:00
|
|
|
"--with-ssl"
|
2013-09-23 12:50:59 +02:00
|
|
|
"--with-sasl"
|
2013-09-22 22:30:18 +02:00
|
|
|
;; so that mutt does not check whether the path
|
|
|
|
;; exists, which it does not in the chroot
|
|
|
|
"--with-mailpath=/var/mail")))
|
|
|
|
(home-page "http://www.mutt.org/")
|
|
|
|
(synopsis "Mail client")
|
|
|
|
(description
|
|
|
|
"Mutt is a small but very powerful text-based mail client for Unix
|
|
|
|
operating systems.")
|
|
|
|
(license gpl2+)))
|