diff options
Diffstat (limited to 'third_party/notmuch/default.nix')
-rw-r--r-- | third_party/notmuch/default.nix | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/third_party/notmuch/default.nix b/third_party/notmuch/default.nix new file mode 100644 index 000000000000..3d45031a82a8 --- /dev/null +++ b/third_party/notmuch/default.nix @@ -0,0 +1,5 @@ +{ pkgs, ... }: + +pkgs.third_party.originals.notmuch.overrideAttrs(old: { + patches = [ ./dottime.patch ] ++ (if old ? patches then old.patches else []); +}) |