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

58 lines
1.6 KiB
Nix
Raw Normal View History

2021-01-17 04:51:22 +01:00
{ lib, stdenv, fetchFromGitHub, sqlite, pkg-config, autoreconfHook, pmccabe
2019-04-08 21:13:10 +02:00
, xapian, glib, gmime3, texinfo , emacs, guile
2019-12-05 10:48:18 +01:00
, gtk3, webkitgtk, libsoup, icu
2020-05-06 07:27:04 +02:00
, withMug ? false
, batchSize ? null }:
2012-12-25 20:59:48 +01:00
stdenv.mkDerivation rec {
pname = "mu";
2021-02-18 13:01:38 +01:00
version = "1.4.15";
2012-12-25 20:59:48 +01:00
2017-03-03 02:41:14 +01:00
src = fetchFromGitHub {
owner = "djcb";
repo = "mu";
2019-04-08 21:13:10 +02:00
rev = version;
2021-02-18 13:01:38 +01:00
sha256 = "sha256-VIUA0W+AmEbvGWatv4maBGILvUTGhBgO3iQtjIc3vG8=";
2012-12-25 20:59:48 +01:00
};
2021-01-15 10:19:50 +01:00
postPatch = lib.optionalString (batchSize != null) ''
2020-05-06 07:27:04 +02:00
sed -i lib/mu-store.cc --regexp-extended \
-e 's@(constexpr auto BatchSize).*@\1 = ${toString batchSize};@'
'';
buildInputs = [
2020-05-14 06:30:31 +02:00
sqlite xapian glib gmime3 texinfo emacs libsoup icu
]
# Workaround for https://github.com/djcb/mu/issues/1641
2021-01-15 10:19:50 +01:00
++ lib.optional (!stdenv.isDarwin) guile
++ lib.optionals withMug [ gtk3 webkitgtk ];
2017-03-03 02:41:14 +01:00
2021-01-17 04:51:22 +01:00
nativeBuildInputs = [ pkg-config autoreconfHook pmccabe ];
2018-02-05 14:44:54 +01:00
enableParallelBuilding = true;
2014-07-03 11:15:55 +02:00
preBuild = ''
# Fix mu4e-builddir (set it to $out)
substituteInPlace mu4e/mu4e-meta.el.in \
--replace "@abs_top_builddir@" "$out"
'';
# Install mug
2021-01-15 10:19:50 +01:00
postInstall = lib.optionalString withMug ''
for f in mug ; do
2017-03-03 02:41:14 +01:00
install -m755 toys/$f/$f $out/bin/$f
done
'';
2012-12-25 20:59:48 +01:00
2018-02-05 14:44:54 +01:00
doCheck = true;
meta = with lib; {
description = "A collection of utilties for indexing and searching Maildirs";
license = licenses.gpl3Plus;
homepage = "https://www.djcbsoftware.nl/code/mu/";
2020-06-06 18:42:49 +02:00
changelog = "https://github.com/djcb/mu/releases/tag/${version}";
maintainers = with maintainers; [ antono peterhoeg ];
2020-04-21 02:31:45 +02:00
platforms = platforms.mesaPlatforms;
2012-12-25 20:59:48 +01:00
};
}