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

52 lines
1.6 KiB
Nix
Raw Normal View History

2017-03-03 02:41:14 +01:00
{ fetchurl, stdenv, sqlite, pkgconfig, autoreconfHook, pmccabe
2014-07-03 11:15:55 +02:00
, xapian, glib, gmime, texinfo , emacs, guile
, gtk3, webkitgtk24x, libsoup, icu
, withMug ? false }:
2012-12-25 20:59:48 +01:00
stdenv.mkDerivation rec {
2016-12-15 20:45:46 +01:00
version = "0.9.18";
2012-12-25 20:59:48 +01:00
name = "mu-${version}";
src = fetchurl {
2016-12-15 20:45:46 +01:00
url = "https://github.com/djcb/mu/archive/${version}.tar.gz";
sha256 = "0gfwi4dwqhsz138plryd0j935vx2i44p63jpfx85ki3l4ysmmlwd";
2012-12-25 20:59:48 +01:00
};
2017-03-03 02:41:14 +01:00
# as of 0.9.18 2 tests are failing but previously we had no tests
patches = [
./failing_tests.patch
];
# pmccabe should be a checkInput instead, but configure looks for it
buildInputs = [
2017-03-03 02:41:14 +01:00
sqlite xapian glib gmime texinfo emacs guile libsoup icu pmccabe
] ++ stdenv.lib.optionals withMug [ gtk3 webkitgtk24x ];
nativeBuildInputs = [ pkgconfig autoreconfHook ];
doCheck = 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 ''
cp -v toys/msg2pdf/msg2pdf $out/bin/
cp -v toys/mug/mug $out/bin/
'';
2012-12-25 20:59:48 +01:00
meta = with stdenv.lib; {
description = "A collection of utilties for indexing and searching Maildirs";
license = licenses.gpl3Plus;
2012-12-25 20:59:48 +01:00
homepage = "http://www.djcbsoftware.nl/code/mu/";
platforms = platforms.mesaPlatforms;
maintainers = with maintainers; [ antono the-kenny ];
2012-12-25 20:59:48 +01:00
};
}