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

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-04-16 10:49:25 +01:00
version = "0.9.12";
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-04-16 10:49:25 +01:00
sha256 = "1bxryacmas2llj68m2dv8dr1vwx8f5k2i2azh69jajkpqx7i4wdq";
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.optional 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 = {
description = "A collection of utilties for indexing and searching Maildirs";
license = stdenv.lib.licenses.gpl3Plus;
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
};
}