mu: 1.10.8 -> 1.12.0

https://github.com/djcb/mu/blob/v1.12.0/NEWS.org
This commit is contained in:
Charlotte Van Petegem
2024-02-27 10:31:36 +01:00
parent cde7a8acb2
commit 202dd43c67
+17 -18
View File
@@ -1,21 +1,23 @@
{ lib
, stdenv
, fetchFromGitHub
, glibcLocales
, meson
, ninja
, pkg-config
, python3
, cld2
, coreutils
, emacs
, glib
, gmime3
, texinfo
, xapian
, fetchpatch
}:
stdenv.mkDerivation rec {
pname = "mu";
version = "1.10.8";
version = "1.12.0";
outputs = [ "out" "mu4e" ];
@@ -23,23 +25,17 @@ stdenv.mkDerivation rec {
owner = "djcb";
repo = "mu";
rev = "v${version}";
hash = "sha256-cDfW0yXA+0fZY5lv4XCHWu+5B0svpMeVMf8ttX/z4Og=";
hash = "sha256-z0sHDZlhsSeIf+ZRCni3j/DbfYrmn6bvYmKpt4PA2i8=";
};
patches = [
(fetchpatch {
name = "add-mu4e-pkg.el";
url = "https://github.com/djcb/mu/commit/00f7053d51105eea0c72151f1a8cf0b6d8478e4e.patch";
hash = "sha256-21c7djmYTcqyyygqByo9vu/GsH8WMYcq8NOAvJsS5AQ=";
})
];
postPatch = ''
# Fix mu4e-builddir (set it to $out)
substituteInPlace mu4e/mu4e-config.el.in \
--replace "@abs_top_builddir@" "$out"
substituteInPlace lib/utils/mu-test-utils.cc \
--replace "/bin/rm" "${coreutils}/bin/rm"
substituteInPlace lib/utils/mu-utils-file.cc \
--replace-fail "/bin/rm" "${coreutils}/bin/rm"
substituteInPlace lib/tests/bench-indexer.cc \
--replace-fail "/bin/rm" "${coreutils}/bin/rm"
substituteInPlace lib/mu-maildir.cc \
--replace-fail "/bin/mv" "${coreutils}/bin/mv"
patchShebangs build-aux/date.py
'';
postInstall = ''
@@ -61,7 +57,7 @@ stdenv.mkDerivation rec {
fi
'';
buildInputs = [ emacs glib gmime3 texinfo xapian ];
buildInputs = [ cld2 emacs glib gmime3 texinfo xapian ];
mesonFlags = [
"-Dguile=disabled"
@@ -69,10 +65,13 @@ stdenv.mkDerivation rec {
"-Dlispdir=${placeholder "mu4e"}/share/emacs/site-lisp"
];
nativeBuildInputs = [ pkg-config meson ninja ];
nativeBuildInputs = [ pkg-config meson ninja python3 glibcLocales ];
doCheck = true;
# Tests need a UTF-8 aware locale configured
env.LANG = "C.UTF-8";
meta = with lib; {
description = "A collection of utilities for indexing and searching Maildirs";
license = licenses.gpl3Plus;