feat(third_party/notmuch): Display dottime in relative time views

This commit is contained in:
Vincent Ambo 2019-12-27 18:12:32 +01:00
parent 100f451b0a
commit 12973b8a8b
3 changed files with 46 additions and 1 deletions

5
third_party/notmuch/default.nix vendored Normal file
View file

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