feat(third_party/notmuch): Patch notmuch to render time as dottime

This implements support for dotti.me in notmuch by changing the
formatting of relative and absolute times.
This commit is contained in:
Vincent Ambo 2019-12-27 19:16:53 +01:00
parent 08dd267c19
commit 1ea6dcabbb
2 changed files with 29 additions and 0 deletions

View file

@ -1,5 +1,6 @@
{ pkgs, ... }:
pkgs.third_party.originals.notmuch.overrideAttrs(old: {
doCheck = false;
patches = [ ./dottime.patch ] ++ (if old ? patches then old.patches else []);
})