tvl-depot/third_party/notmuch/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
202 B
Nix
Raw Normal View History

# Notmuch, but with support for https://dotti.me/
{ pkgs, ... }:
pkgs.notmuch.overrideAttrs(old: {
doCheck = false;
patches = [ ./dottime.patch ] ++ (if old ? patches then old.patches else []);
})