2016-01-17 15:04:40 -08:00
|
|
|
{ fetchurl, stdenv, sqlite, pkgconfig, autoreconfHook
|
2014-07-03 02:15:55 -07:00
|
|
|
, xapian, glib, gmime, texinfo , emacs, guile
|
2016-07-11 01:36:13 -07:00
|
|
|
, gtk3, webkitgtk24x, libsoup, icu }:
|
2012-12-25 11:59:48 -08:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2016-12-15 11:45:46 -08:00
|
|
|
version = "0.9.18";
|
2012-12-25 11:59:48 -08:00
|
|
|
name = "mu-${version}";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2016-12-15 11:45:46 -08:00
|
|
|
url = "https://github.com/djcb/mu/archive/${version}.tar.gz";
|
|
|
|
sha256 = "0gfwi4dwqhsz138plryd0j935vx2i44p63jpfx85ki3l4ysmmlwd";
|
2012-12-25 11:59:48 -08:00
|
|
|
};
|
|
|
|
|
2016-01-17 15:04:40 -08:00
|
|
|
buildInputs = [
|
|
|
|
sqlite pkgconfig xapian glib gmime texinfo emacs guile libsoup icu
|
|
|
|
autoreconfHook
|
2016-07-11 01:36:13 -07:00
|
|
|
gtk3 webkitgtk24x ];
|
2014-07-03 02:15:55 -07:00
|
|
|
|
2013-10-02 04:55:17 -07: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
|
2016-07-11 01:36:13 -07:00
|
|
|
postInstall = ''
|
2013-10-02 04:55:17 -07:00
|
|
|
cp -v toys/msg2pdf/msg2pdf $out/bin/
|
|
|
|
cp -v toys/mug/mug $out/bin/
|
|
|
|
'';
|
2012-12-25 11:59:48 -08:00
|
|
|
|
2015-09-24 01:38:43 -07:00
|
|
|
meta = with stdenv.lib; {
|
2013-10-01 14:47:57 -07:00
|
|
|
description = "A collection of utilties for indexing and searching Maildirs";
|
2015-09-24 01:38:43 -07:00
|
|
|
license = licenses.gpl3Plus;
|
2012-12-25 11:59:48 -08:00
|
|
|
homepage = "http://www.djcbsoftware.nl/code/mu/";
|
2015-09-24 01:38:43 -07:00
|
|
|
platforms = platforms.mesaPlatforms;
|
|
|
|
maintainers = with maintainers; [ antono the-kenny ];
|
2012-12-25 11:59:48 -08:00
|
|
|
};
|
|
|
|
}
|