diff options
author | Vincent Ambo <tazjin@google.com> | 2019-12-26T11·52+0100 |
---|---|---|
committer | Vincent Ambo <tazjin@google.com> | 2019-12-26T12·02+0100 |
commit | a07571a4dbdee4f87aeb57701f1a26b2d09278fb (patch) | |
tree | 492efe1429936b963e9a60e419507386d51cdc77 /third_party/lieer/default.nix | |
parent | 29af390e8c146e9f741710342db1aa369681fb75 (diff) |
feat(third_party/lieer): Request OAuth2 scope for sending emails r/303
This makes it possible to reuse the lieer tokens for sending emails from XOAUTH2-compatible SMTP clients.
Diffstat (limited to 'third_party/lieer/default.nix')
-rw-r--r-- | third_party/lieer/default.nix | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/third_party/lieer/default.nix b/third_party/lieer/default.nix index 80bd06350120..0c399db158b5 100644 --- a/third_party/lieer/default.nix +++ b/third_party/lieer/default.nix @@ -18,6 +18,8 @@ python3Packages.buildPythonApplication rec { sha256 = "1zzylv8xbcrh34bz0s29dawzcyx39lai8y8wk0bl4x75v1jfynvf"; }; + patches = [ ./send_scope.patch ]; + propagatedBuildInputs = with python3Packages; [ notmuch oauth2client |