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
|
2019-12-05 09:48:18 +00:00
|
|
|
, gtk3, webkitgtk, libsoup, icu
|
2020-05-06 06:27:04 +01:00
|
|
|
, withMug ? false
|
|
|
|
, batchSize ? null }:
|
2012-12-25 19:59:48 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "mu";
|
2020-04-29 10:29:10 +01:00
|
|
|
version = "1.4.3";
|
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;
|
2020-04-29 10:29:10 +01:00
|
|
|
sha256 = "1i9chd8ks1q4g5pyscsir6pw4kahkx3k8ckzbi8j3gr6jz1qzzsg";
|
2012-12-25 19:59:48 +00:00
|
|
|
};
|
|
|
|
|
2020-05-06 06:27:04 +01:00
|
|
|
postPatch = stdenv.lib.optionalString (batchSize != null) ''
|
|
|
|
sed -i lib/mu-store.cc --regexp-extended \
|
|
|
|
-e 's@(constexpr auto BatchSize).*@\1 = ${toString batchSize};@'
|
|
|
|
'';
|
|
|
|
|
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
|
2019-12-05 09:48:18 +00:00
|
|
|
] ++ stdenv.lib.optionals withMug [ gtk3 webkitgtk ];
|
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"
|
|
|
|
'';
|
|
|
|
|
2020-04-20 09:57:40 +01:00
|
|
|
# Install mug
|
2017-01-04 21:25:59 +00:00
|
|
|
postInstall = stdenv.lib.optionalString withMug ''
|
2020-04-20 09:57:40 +01:00
|
|
|
for f in mug ; do
|
2017-03-03 01:41:14 +00:00
|
|
|
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;
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://www.djcbsoftware.nl/code/mu/";
|
2017-03-03 01:41:14 +00:00
|
|
|
maintainers = with maintainers; [ antono the-kenny peterhoeg ];
|
2020-04-21 01:31:45 +01:00
|
|
|
platforms = platforms.mesaPlatforms;
|
2012-12-25 19:59:48 +00:00
|
|
|
};
|
|
|
|
}
|