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

47 lines
1.4 KiB
Nix
Raw Normal View History

2014-07-03 10:15:55 +01:00
{ fetchurl, stdenv, sqlite, pkgconfig, autoconf, automake
, xapian, glib, gmime, texinfo , emacs, guile
, gtk3, webkit, libsoup, icu, withMug ? false /* doesn't build with current gtk3 */ }:
2012-12-25 19:59:48 +00:00
stdenv.mkDerivation rec {
2015-09-24 09:08:30 +01:00
version = "0.9.13";
2012-12-25 19:59:48 +00:00
name = "mu-${version}";
src = fetchurl {
2014-07-03 10:15:55 +01:00
url = "https://github.com/djcb/mu/archive/v${version}.tar.gz";
2015-09-24 09:08:30 +01:00
sha256 = "0wj33pma8xgjvn2akk7khzbycwn4c9sshxvzdph9dnpy7gyqxj51";
2012-12-25 19:59:48 +00:00
};
buildInputs =
2014-07-03 10:15:55 +01:00
[ sqlite pkgconfig autoconf automake xapian
glib gmime texinfo emacs guile libsoup icu ]
++ stdenv.lib.optionals withMug [ gtk3 webkit ];
2014-07-03 10:15:55 +01:00
preConfigure = ''
autoreconf -i
'';
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 ''
cp -v toys/msg2pdf/msg2pdf $out/bin/
cp -v toys/mug/mug $out/bin/
'';
2012-12-25 19:59:48 +00:00
meta = with stdenv.lib; {
description = "A collection of utilties for indexing and searching Maildirs";
license = licenses.gpl3Plus;
2012-12-25 19:59:48 +00:00
homepage = "http://www.djcbsoftware.nl/code/mu/";
platforms = platforms.mesaPlatforms;
maintainers = with maintainers; [ antono the-kenny ];
2012-12-25 19:59:48 +00:00
};
}