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

63 lines
1.8 KiB
Nix
Raw Normal View History

2021-01-17 04:51:22 +01:00
{ lib, stdenv, fetchFromGitHub, sqlite, pkg-config, autoreconfHook, pmccabe
, xapian, glib, gmime3, texinfo, emacs, guile
2019-12-05 10:48:18 +01:00
, gtk3, webkitgtk, libsoup, icu
, makeWrapper
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-11-13 12:21:20 +01:00
version = "1.6.10";
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-11-13 12:21:20 +01:00
sha256 = "1uJB8QdR0JgWlogb1cdUicz+LLtYQpAvYJjwcRjXt+E=";
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
nativeBuildInputs = [ pkg-config autoreconfHook pmccabe makeWrapper ];
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"
'';
# Make sure included scripts can find their dependencies & optionally install mug
postInstall = ''
wrapProgram "$out/bin/mu" \
--prefix LD_LIBRARY_PATH : "$out/lib" \
--prefix GUILE_LOAD_PATH : "$out/share/guile/site/2.2"
'' + 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}";
2021-08-27 09:46:59 +02:00
maintainers = with maintainers; [ antono chvp peterhoeg ];
2020-04-21 02:31:45 +02:00
platforms = platforms.mesaPlatforms;
2012-12-25 20:59:48 +01:00
};
}