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

56 lines
1.6 KiB
Nix
Raw Normal View History

2017-03-03 01:41:14 +00:00
{ stdenv, fetchFromGitHub, sqlite, pkgconfig, autoreconfHook, pmccabe
2014-07-03 09:15:55 +00:00
, xapian, glib, gmime, texinfo , emacs, guile
, gtk3, webkitgtk24x, libsoup, icu
, withMug ? false }:
2012-12-25 19:59:48 +00:00
stdenv.mkDerivation rec {
name = "mu-${version}";
2017-03-03 01:41:14 +00:00
version = "0.9.18";
2012-12-25 19:59:48 +00:00
2017-03-03 01:41:14 +00:00
src = fetchFromGitHub {
owner = "djcb";
repo = "mu";
rev = version;
sha256 = "0zy0p196bfrfzsq8f58xv04rpnr948sdvljflgzvi6js0vz4009y";
2012-12-25 19:59:48 +00:00
};
2017-03-03 01:41:14 +00: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 01:41:14 +00:00
sqlite xapian glib gmime texinfo emacs guile libsoup icu
2017-03-03 01:41:14 +00:00
] ++ stdenv.lib.optionals withMug [ gtk3 webkitgtk24x ];
nativeBuildInputs = [ pkgconfig autoreconfHook ];
2017-03-03 01:41:14 +00:00
checkInputs = [ pmccabe ];
2017-03-03 01:41:14 +00:00
doCheck = true;
2014-07-03 09:15:55 +00: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 ''
2017-03-03 01:41:14 +00:00
for f in msg2pdf mug ; do
install -m755 toys/$f/$f $out/bin/$f
done
'';
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;
2017-03-03 01:41:14 +00:00
maintainers = with maintainers; [ antono the-kenny peterhoeg ];
2012-12-25 19:59:48 +00:00
};
}