1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/tools/networking/mu/default.nix

41 lines
1.3 KiB
Nix
Raw Normal View History

{ fetchurl, stdenv, sqlite, pkgconfig, 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 {
version = "0.9.9.5";
2012-12-25 19:59:48 +00:00
name = "mu-${version}";
src = fetchurl {
url = "https://mu0.googlecode.com/files/mu-${version}.tar.gz";
sha256 = "1hwkliyb8fjrz5sw9fcisssig0jkdxzhccw0ld0l9a10q1l9mqhp";
2012-12-25 19:59:48 +00:00
};
buildInputs =
[ sqlite pkgconfig xapian glib gmime texinfo emacs guile libsoup icu ]
++ stdenv.lib.optional withMug [ gtk3 webkit ];
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 = {
description = "A collection of utilties for indexing and searching Maildirs";
license = "GPLv3+";
2012-12-25 19:59:48 +00:00
homepage = "http://www.djcbsoftware.nl/code/mu/";
2013-10-07 16:36:47 +01:00
platforms = stdenv.lib.platforms.mesaPlatforms;
maintainers = with stdenv.lib.maintainers; [ antono the-kenny ];
2012-12-25 19:59:48 +00:00
};
}