nixpkgs/pkgs/applications/networking/mailreaders/neomutt/default.nix
2024-10-02 20:31:35 +02:00

176 lines
4.1 KiB
Nix

{
lib,
stdenv,
fetchFromGitHub,
gettext,
makeWrapper,
tcl,
which,
ncurses,
perl,
cyrus_sasl,
gss,
gpgme,
libkrb5,
libidn2,
libxml2,
notmuch,
openssl,
lua,
lmdb,
libxslt,
docbook_xsl,
docbook_xml_dtd_42,
w3m,
mailcap,
sqlite,
zlib,
lndir,
pkg-config,
zstd,
enableZstd ? true,
enableMixmaster ? false,
enableLua ? false,
enableSmimeKeys ? true,
withContrib ? true,
}:
assert lib.warnIf (
enableMixmaster
) "Support for mixmaster has been removed from neomutt since the 20241002 release" true;
stdenv.mkDerivation (finalAttrs: {
pname = "neomutt";
version = "20241002";
src = fetchFromGitHub {
owner = "neomutt";
repo = "neomutt";
rev = finalAttrs.version;
hash = "sha256-c8G0CGg4jrwq+HVR4O0AtaJNzr7pDYsie1410tisLEY=";
};
buildInputs = [
cyrus_sasl
gss
gpgme
libkrb5
libidn2
ncurses
notmuch
openssl
perl
lmdb
mailcap
sqlite
] ++ lib.optional enableZstd zstd ++ lib.optional enableLua lua;
nativeBuildInputs = [
docbook_xsl
docbook_xml_dtd_42
gettext
libxml2
libxslt.bin
makeWrapper
tcl
which
zlib
w3m
pkg-config
];
enableParallelBuilding = true;
postPatch = ''
substituteInPlace auto.def --replace /usr/sbin/sendmail sendmail
substituteInPlace contrib/smime_keys \
--replace /usr/bin/openssl ${openssl}/bin/openssl
for f in doc/*.{xml,xsl}* ; do
substituteInPlace $f \
--replace http://docbook.sourceforge.net/release/xsl/current ${docbook_xsl}/share/xml/docbook-xsl \
--replace http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd ${docbook_xml_dtd_42}/xml/dtd/docbook/docbookx.dtd
done
# allow neomutt to map attachments to their proper mime.types if specified wrongly
# and use a far more comprehensive list than the one shipped with neomutt
substituteInPlace send/sendlib.c \
--replace /etc/mime.types ${mailcap}/etc/mime.types
'';
configureFlags = [
"--enable-autocrypt"
"--gpgme"
"--gss"
"--lmdb"
"--notmuch"
"--ssl"
"--sasl"
"--with-homespool=mailbox"
"--with-mailpath="
# To make it not reference .dev outputs. See:
# https://github.com/neomutt/neomutt/pull/2367
"--disable-include-path-in-cflags"
"--zlib"
] ++ lib.optional enableZstd "--zstd" ++ lib.optional enableLua "--lua";
postInstall =
''
wrapProgram "$out/bin/neomutt" --prefix PATH : "$out/libexec/neomutt"
''
+ lib.optionalString enableSmimeKeys ''
install -m 755 $src/contrib/smime_keys $out/bin;
substituteInPlace $out/bin/smime_keys \
--replace-fail '/usr/bin/openssl' '${openssl}/bin/openssl';
''
# https://github.com/neomutt/neomutt-contrib
# Contains vim-keys, keybindings presets and more.
+ lib.optionalString withContrib "${lib.getExe lndir} ${finalAttrs.passthru.contrib} $out/share/doc/neomutt";
doCheck = true;
preCheck = ''
cp -r ${finalAttrs.passthru.test-files} $(pwd)/test-files
chmod -R +w test-files
(cd test-files && ./setup.sh)
export NEOMUTT_TEST_DIR=$(pwd)/test-files
# The test fails with: node_padding.c:135: Check rc == 15... failed
substituteInPlace test/main.c \
--replace-fail "NEOMUTT_TEST_ITEM(test_expando_node_padding)" ""
'';
passthru = {
test-files = fetchFromGitHub {
owner = "neomutt";
repo = "neomutt-test-files";
rev = "00efc8388110208e77e6ed9d8294dfc333753d54";
hash = "sha256-/ELowuMq67v56MAJBtO73g6OqV0DVwW4+x+0u4P5mB0=";
};
contrib = fetchFromGitHub {
owner = "neomutt";
repo = "neomutt-contrib";
rev = "8e97688693ca47ea1055f3d15055a4f4ecc5c832";
hash = "sha256-tx5Y819rNDxOpjg3B/Y2lPcqJDArAxVwjbYarVmJ79k=";
};
};
checkTarget = "test";
postCheck = "unset NEOMUTT_TEST_DIR";
meta = {
description = "Small but very powerful text-based mail client";
mainProgram = "neomutt";
homepage = "https://www.neomutt.org";
license = lib.licenses.gpl2Plus;
maintainers = with lib.maintainers; [
erikryb
raitobezarius
];
platforms = lib.platforms.unix;
};
})