nixpkgs/pkgs/tools/networking/mu/default.nix

57 lines
1.6 KiB
Nix
Raw Normal View History

2017-03-03 02:41:14 +01:00
{ stdenv, fetchFromGitHub, sqlite, pkgconfig, autoreconfHook, pmccabe
2019-04-08 21:13:10 +02:00
, xapian, glib, gmime3, texinfo , emacs, guile
, gtk3, webkitgtk24x-gtk3, libsoup, icu
, withMug ? false }:
2012-12-25 20:59:48 +01:00
stdenv.mkDerivation rec {
pname = "mu";
version = "1.3.5";
2012-12-25 20:59:48 +01:00
2017-03-03 02:41:14 +01:00
src = fetchFromGitHub {
owner = "djcb";
repo = "mu";
2019-04-08 21:13:10 +02:00
rev = version;
sha256 = "1g7rhgp405v7q9xx44k6jn3py4v73a9qjwhai6l459wdywdz1n3n";
2012-12-25 20:59:48 +01:00
};
2018-02-05 14:44:54 +01:00
# test-utils coredumps so don't run those
postPatch = ''
sed -i -e '/test-utils/d' lib/parser/Makefile.am
'';
buildInputs = [
2019-04-08 21:13:10 +02:00
sqlite xapian glib gmime3 texinfo emacs guile libsoup icu
] ++ stdenv.lib.optionals withMug [ gtk3 webkitgtk24x-gtk3 ];
2017-03-03 02:41:14 +01:00
2018-02-05 14:44:54 +01:00
nativeBuildInputs = [ pkgconfig autoreconfHook pmccabe ];
enableParallelBuilding = true;
2014-07-03 11:15:55 +02:00
preBuild = ''
# Fix mu4e-builddir (set it to $out)
substituteInPlace mu4e/mu4e-meta.el.in \
--replace "@abs_top_builddir@" "$out"
# We install msg2pdf to bin/msg2pdf, fix its location in elisp
substituteInPlace mu4e/mu4e-actions.el \
--replace "/toys/msg2pdf/msg2pdf" "/bin/msg2pdf"
'';
# Install mug and msg2pdf
postInstall = stdenv.lib.optionalString withMug ''
2017-03-03 02:41:14 +01:00
for f in msg2pdf mug ; do
install -m755 toys/$f/$f $out/bin/$f
done
'';
2012-12-25 20:59:48 +01:00
2018-02-05 14:44:54 +01:00
doCheck = true;
meta = with stdenv.lib; {
description = "A collection of utilties for indexing and searching Maildirs";
license = licenses.gpl3Plus;
2019-04-08 21:13:10 +02:00
homepage = https://www.djcbsoftware.nl/code/mu/;
platforms = platforms.mesaPlatforms;
2017-03-03 02:41:14 +01:00
maintainers = with maintainers; [ antono the-kenny peterhoeg ];
2012-12-25 20:59:48 +01:00
};
}