tvl-depot/third_party/notmuch/default.nix
Vincent Ambo 1ea6dcabbb 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.
2019-12-27 19:18:00 +01:00

6 lines
174 B
Nix

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