2017-03-03 01:41:14 +00:00
|
|
|
{ stdenv, fetchFromGitHub, sqlite, pkgconfig, autoreconfHook, pmccabe
|
2019-04-08 20:13:10 +01:00
|
|
|
, xapian, glib, gmime3, texinfo , emacs, guile
|
2017-05-26 14:43:25 +01:00
|
|
|
, gtk3, webkitgtk24x-gtk3, libsoup, icu
|
2017-03-04 18:01:32 +00:00
|
|
|
, withMug ? false }:
|
2012-12-25 19:59:48 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "mu-${version}";
|
2019-04-08 20:13:10 +01:00
|
|
|
version = "1.2";
|
2012-12-25 19:59:48 +00:00
|
|
|
|
2017-03-03 01:41:14 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "djcb";
|
|
|
|
repo = "mu";
|
2019-04-08 20:13:10 +01:00
|
|
|
rev = version;
|
|
|
|
sha256 = "0yhjlj0z23jw3cf2wfnl98y8q6gikvmhkb8vdm87bd7jw0bdnrfz";
|
2012-12-25 19:59:48 +00:00
|
|
|
};
|
|
|
|
|
2018-02-05 13:44:54 +00:00
|
|
|
# test-utils coredumps so don't run those
|
|
|
|
postPatch = ''
|
|
|
|
sed -i -e '/test-utils/d' lib/parser/Makefile.am
|
|
|
|
'';
|
|
|
|
|
2016-01-17 23:04:40 +00:00
|
|
|
buildInputs = [
|
2019-04-08 20:13:10 +01:00
|
|
|
sqlite xapian glib gmime3 texinfo emacs guile libsoup icu
|
2017-05-26 14:43:25 +01:00
|
|
|
] ++ stdenv.lib.optionals withMug [ gtk3 webkitgtk24x-gtk3 ];
|
2017-03-03 01:41:14 +00:00
|
|
|
|
2018-02-05 13:44:54 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig autoreconfHook pmccabe ];
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
2014-07-03 10:15:55 +01:00
|
|
|
|
2013-10-02 12:55:17 +01: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
|
2017-01-04 21:25:59 +00:00
|
|
|
postInstall = stdenv.lib.optionalString withMug ''
|
2017-03-03 01:41:14 +00:00
|
|
|
for f in msg2pdf mug ; do
|
|
|
|
install -m755 toys/$f/$f $out/bin/$f
|
|
|
|
done
|
2013-10-02 12:55:17 +01:00
|
|
|
'';
|
2012-12-25 19:59:48 +00:00
|
|
|
|
2018-02-05 13:44:54 +00:00
|
|
|
doCheck = true;
|
|
|
|
|
2015-09-24 09:38:43 +01:00
|
|
|
meta = with stdenv.lib; {
|
2013-10-01 22:47:57 +01:00
|
|
|
description = "A collection of utilties for indexing and searching Maildirs";
|
2015-09-24 09:38:43 +01:00
|
|
|
license = licenses.gpl3Plus;
|
2019-04-08 20:13:10 +01:00
|
|
|
homepage = https://www.djcbsoftware.nl/code/mu/;
|
2015-09-24 09:38:43 +01:00
|
|
|
platforms = platforms.mesaPlatforms;
|
2017-03-03 01:41:14 +00:00
|
|
|
maintainers = with maintainers; [ antono the-kenny peterhoeg ];
|
2012-12-25 19:59:48 +00:00
|
|
|
};
|
|
|
|
}
|