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

48 lines
1.2 KiB
Nix
Raw Normal View History

2017-03-02 17:41:14 -08:00
{ stdenv, fetchFromGitHub, sqlite, pkgconfig, autoreconfHook, pmccabe
2019-04-08 12:13:10 -07:00
, xapian, glib, gmime3, texinfo , emacs, guile
2019-12-05 01:48:18 -08:00
, gtk3, webkitgtk, libsoup, icu
, withMug ? false }:
2012-12-25 11:59:48 -08:00
stdenv.mkDerivation rec {
pname = "mu";
2020-04-29 02:29:10 -07:00
version = "1.4.3";
2012-12-25 11:59:48 -08:00
2017-03-02 17:41:14 -08:00
src = fetchFromGitHub {
owner = "djcb";
repo = "mu";
2019-04-08 12:13:10 -07:00
rev = version;
2020-04-29 02:29:10 -07:00
sha256 = "1i9chd8ks1q4g5pyscsir6pw4kahkx3k8ckzbi8j3gr6jz1qzzsg";
2012-12-25 11:59:48 -08:00
};
buildInputs = [
2019-04-08 12:13:10 -07:00
sqlite xapian glib gmime3 texinfo emacs guile libsoup icu
2019-12-05 01:48:18 -08:00
] ++ stdenv.lib.optionals withMug [ gtk3 webkitgtk ];
2017-03-02 17:41:14 -08:00
2018-02-05 05:44:54 -08:00
nativeBuildInputs = [ pkgconfig autoreconfHook pmccabe ];
enableParallelBuilding = true;
2014-07-03 02:15:55 -07:00
preBuild = ''
# Fix mu4e-builddir (set it to $out)
substituteInPlace mu4e/mu4e-meta.el.in \
--replace "@abs_top_builddir@" "$out"
'';
# Install mug
postInstall = stdenv.lib.optionalString withMug ''
for f in mug ; do
2017-03-02 17:41:14 -08:00
install -m755 toys/$f/$f $out/bin/$f
done
'';
2012-12-25 11:59:48 -08:00
2018-02-05 05:44:54 -08:00
doCheck = true;
meta = with stdenv.lib; {
description = "A collection of utilties for indexing and searching Maildirs";
license = licenses.gpl3Plus;
homepage = "https://www.djcbsoftware.nl/code/mu/";
2017-03-02 17:41:14 -08:00
maintainers = with maintainers; [ antono the-kenny peterhoeg ];
2020-04-20 17:31:45 -07:00
platforms = platforms.mesaPlatforms;
2012-12-25 11:59:48 -08:00
};
}