diff options
Diffstat (limited to 'third_party/overlays/tvl.nix')
-rw-r--r-- | third_party/overlays/tvl.nix | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/third_party/overlays/tvl.nix b/third_party/overlays/tvl.nix index 7c7c8ea06a43..d33f4461687a 100644 --- a/third_party/overlays/tvl.nix +++ b/third_party/overlays/tvl.nix @@ -29,11 +29,10 @@ self: super: { }) ); - # Temporary fix for python3Packages.notmuch - # See https://github.com/NixOS/nixpkgs/pull/132592/ + # dottime support for notmuch notmuch = super.notmuch.overrideAttrs(old: { passthru = old.passthru // { - pythonSourceRoot = "notmuch-${old.version}/bindings/python"; + patches = old.patches ++ [ ./patches/notmuch-dottime.patch ]; }; }); } |