mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 13:37:21 +03:00
43 lines
1.2 KiB
Nix
43 lines
1.2 KiB
Nix
{ fetchurl, stdenv, sqlite, pkgconfig, autoreconfHook
|
|
, xapian, glib, gmime, texinfo , emacs, guile
|
|
, gtk3, webkitgtk24x, libsoup, icu }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "0.9.16";
|
|
name = "mu-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/djcb/mu/archive/v${version}.tar.gz";
|
|
sha256 = "0p7hqri1r1x6750x138cc29mh81kdav2dcim26y58s8an206h25g";
|
|
};
|
|
|
|
buildInputs = [
|
|
sqlite pkgconfig xapian glib gmime texinfo emacs guile libsoup icu
|
|
autoreconfHook
|
|
gtk3 webkitgtk24x ];
|
|
|
|
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 = ''
|
|
cp -v toys/msg2pdf/msg2pdf $out/bin/
|
|
cp -v toys/mug/mug $out/bin/
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A collection of utilties for indexing and searching Maildirs";
|
|
license = licenses.gpl3Plus;
|
|
homepage = "http://www.djcbsoftware.nl/code/mu/";
|
|
platforms = platforms.mesaPlatforms;
|
|
maintainers = with maintainers; [ antono the-kenny ];
|
|
};
|
|
}
|