nixpkgs/pkgs/applications/networking/mailreaders/notmuch/default.nix

103 lines
2.9 KiB
Nix
Raw Normal View History

2018-11-05 19:47:10 +01:00
{ fetchurl, stdenv
, pkgconfig, gnupg
, xapian, gmime, talloc, zlib
2020-04-01 19:33:53 +02:00
, doxygen, perl, texinfo
, pythonPackages
, emacs
, ruby
, which, dtach, openssl, bash, gdb, man
2020-04-01 19:33:53 +02:00
, withEmacs ? true
}:
with stdenv.lib;
stdenv.mkDerivation rec {
2020-02-06 20:01:04 +01:00
version = "0.29.3";
pname = "notmuch";
passthru = {
pythonSourceRoot = "${pname}-${version}/bindings/python";
2016-08-02 08:59:41 +02:00
inherit version;
};
src = fetchurl {
url = "https://notmuchmail.org/releases/${pname}-${version}.tar.xz";
2020-02-06 20:01:04 +01:00
sha256 = "0dfwa38vgnxk9cvvpza66szjgp8lir6iz6yy0cry9593lywh9xym";
};
2020-04-01 19:33:53 +02:00
nativeBuildInputs = [
pkgconfig
doxygen # (optional) api docs
pythonPackages.sphinx # (optional) documentation -> doc/INSTALL
texinfo # (optional) documentation -> doc/INSTALL
] ++ optional withEmacs [ emacs ];
buildInputs = [
2020-04-01 19:33:53 +02:00
gnupg # undefined dependencies
xapian gmime talloc zlib # dependencies described in INSTALL
2020-04-01 19:33:53 +02:00
perl
pythonPackages.python
ruby
2018-11-05 19:47:10 +01:00
];
postPatch = ''
patchShebangs configure
2018-11-05 19:47:10 +01:00
patchShebangs test/
2018-11-05 19:47:10 +01:00
substituteInPlace lib/Makefile.local \
--replace '-install_name $(libdir)' "-install_name $out/lib"
2020-04-01 19:33:53 +02:00
'' + optionalString withEmacs ''
substituteInPlace emacs/notmuch-emacs-mua \
--replace 'EMACS:-emacs' 'EMACS:-${emacs}/bin/emacs' \
--replace 'EMACSCLIENT:-emacsclient' 'EMACSCLIENT:-${emacs}/bin/emacsclient'
'';
2020-04-01 19:33:53 +02:00
configureFlags = [
"--zshcompletiondir=${placeholder "out"}/share/zsh/site-functions"
"--bashcompletiondir=${placeholder "out"}/share/bash-completion/completions"
2020-05-02 11:20:00 +02:00
"--infodir=${placeholder "info"}/share/info"
2020-04-01 19:33:53 +02:00
] ++ optional (!withEmacs) "--without-emacs"
++ optional (withEmacs) "--emacslispdir=${placeholder "emacs"}/share/emacs/site-lisp"
2020-04-01 19:33:53 +02:00
++ optional (isNull ruby) "--without-ruby";
2018-02-24 05:23:58 +01:00
# Notmuch doesn't use autoconf and consequently doesn't tag --bindir and
# friends
setOutputFlags = false;
enableParallelBuilding = true;
makeFlags = [ "V=1" ];
2020-04-01 19:33:53 +02:00
outputs = [ "out" "man" "info" ] ++ stdenv.lib.optional withEmacs "emacs";
2020-04-01 19:33:53 +02:00
preCheck = let
test-database = fetchurl {
url = "https://notmuchmail.org/releases/test-databases/database-v1.tar.xz";
sha256 = "1lk91s00y4qy4pjh8638b5lfkgwyl282g1m27srsf7qfn58y16a2";
};
in ''
ln -s ${test-database} test/test-databases/database-v1.tar.xz
'';
doCheck = !stdenv.hostPlatform.isDarwin && (versionAtLeast gmime.version "3.0.3");
2018-11-05 19:47:10 +01:00
checkTarget = "test";
checkInputs = [
which dtach openssl bash
2020-04-01 19:33:53 +02:00
gdb man emacs
2018-11-05 19:47:10 +01:00
];
2020-04-01 19:33:53 +02:00
installTargets = [ "install" "install-man" "install-info" ];
postInstall = stdenv.lib.optionalString withEmacs ''
moveToOutput bin/notmuch-emacs-mua $emacs
'';
dontGzipMan = true; # already compressed
meta = {
description = "Mail indexer";
homepage = "https://notmuchmail.org/";
license = licenses.gpl3;
maintainers = with maintainers; [ flokli puckipedia ];
platforms = platforms.unix;
};
}