biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / networking / mailutils / default.nix
blobc9979a0fee5fad46a3b7075b988c7eb9d757d3bc
1 { lib
2 , stdenv
3 , fetchurl
4 , fetchpatch
5 , autoreconfHook
6 , dejagnu
7 , gettext
8 , gnum4
9 , pkg-config
10 , texinfo
11 , fribidi
12 , gdbm
13 , gnutls
14 , gss
15 , guile_2_2
16 , libmysqlclient
17 , mailcap
18 , nettools
19 , pam
20 , readline
21 , ncurses
22 , python3
23 , sasl
24 , system-sendmail
25 , libxcrypt
26 , mkpasswd
28 , pythonSupport ? true
29 , guileSupport ? true
32 stdenv.mkDerivation rec {
33   pname = "mailutils";
34   version = "3.17";
36   src = fetchurl {
37     url = "mirror://gnu/${pname}/${pname}-${version}.tar.xz";
38     hash = "sha256-+km6zsN1Zv5S+IIh04cWc6Yzru4M2SPMOo5lu+8rhOk=";
39   };
41   separateDebugInfo = true;
43   postPatch = ''
44     sed -i -e '/chown root:mail/d' \
45            -e 's/chmod [24]755/chmod 0755/' \
46       */Makefile{.in,.am}
47     sed -i 's:/usr/lib/mysql:${libmysqlclient}/lib/mysql:' configure.ac
48   '';
50   nativeBuildInputs = [
51     autoreconfHook
52     gettext
53     gnum4
54     pkg-config
55     texinfo
56   ];
58   buildInputs = [
59     fribidi
60     gdbm
61     gnutls
62     gss
63     libmysqlclient
64     mailcap
65     ncurses
66     pam
67     readline
68     sasl
69     libxcrypt
70   ] ++ lib.optionals stdenv.hostPlatform.isLinux [ nettools ]
71   ++ lib.optionals pythonSupport [ python3 ]
72   ++ lib.optionals guileSupport [ guile_2_2 ];
74   patches = [
75     ./fix-build-mb-len-max.patch
76     ./path-to-cat.patch
77     # Fix cross-compilation
78     # https://lists.gnu.org/archive/html/bug-mailutils/2020-11/msg00038.html
79     (fetchpatch {
80       url = "https://lists.gnu.org/archive/html/bug-mailutils/2020-11/txtiNjqcNpqOk.txt";
81       sha256 = "0ghzqb8qx2q8cffbvqzw19mivv7r5f16whplzhm7hdj0j2i6xf6s";
82     })
83     # https://github.com/NixOS/nixpkgs/issues/223967
84     # https://lists.gnu.org/archive/html/bug-mailutils/2023-04/msg00000.html
85     ./don-t-use-descrypt-password-in-the-test-suite.patch
86   ];
88   enableParallelBuilding = true;
89   hardeningDisable = [ "format" ];
91   configureFlags = [
92     "--sysconfdir=/etc"
93     "--with-gssapi"
94     "--with-gsasl"
95     "--with-mysql"
96     "--with-path-sendmail=${system-sendmail}/bin/sendmail"
97     "--with-mail-rc=/etc/mail.rc"
98     "DEFAULT_CUPS_CONFDIR=${mailcap}/etc" # provides mime.types to mimeview
99   ] ++ lib.optional (!pythonSupport) "--without-python"
100     ++ lib.optional (!guileSupport) "--without-guile";
102   nativeCheckInputs = [ dejagnu mkpasswd ];
103   doCheck = !stdenv.hostPlatform.isDarwin; # ERROR: All 46 tests were run, 46 failed unexpectedly.
104   doInstallCheck = false; # fails
106   preCheck = ''
107     # Disable comsat tests that fail without tty in the sandbox.
108     tty -s || echo > comsat/tests/testsuite.at
109     # Remove broken macro
110     sed -i '/AT_TESTED/d' libmu_scm/tests/testsuite.at
111     # Provide libraries for mhn.
112     export LD_LIBRARY_PATH=$(pwd)/lib/.libs
113   '';
115   postCheck = ''
116     unset LD_LIBRARY_PATH
117   '';
119   meta = with lib; {
120     description = "Rich and powerful protocol-independent mail framework";
122     longDescription = ''
123       GNU Mailutils is a rich and powerful protocol-independent mail
124       framework.  It contains a series of useful mail libraries, clients, and
125       servers.  These are the primary mail utilities for the GNU system.  The
126       central library is capable of handling electronic mail in various
127       mailbox formats and protocols, both local and remote.  Specifically,
128       this project contains a POP3 server, an IMAP4 server, and a Sieve mail
129       filter.  It also provides a POSIX `mailx' client, and a collection of
130       other handy tools.
132       The GNU Mailutils libraries supply an ample set of primitives for
133       handling electronic mail in programs written in C, C++, Python or
134       Scheme.
136       The utilities provided by Mailutils include imap4d and pop3d mail
137       servers, mail reporting utility comsatd, mail filtering program sieve,
138       and an implementation of MH message handling system.
139     '';
141     license = with licenses; [
142       lgpl3Plus /* libraries */
143       gpl3Plus /* tools */
144     ];
146     maintainers = with maintainers; [ orivej ];
148     homepage = "https://www.gnu.org/software/mailutils/";
149     changelog = "https://git.savannah.gnu.org/cgit/mailutils.git/tree/NEWS";
151     # Some of the dependencies fail to build on {cyg,dar}win.
152     platforms = platforms.gnu ++ platforms.unix;
153   };