about summary refs log tree commit diff
path: root/third_party/lieer/default.nix
diff options
context:
space:
mode:
authortazjin <mail@tazj.in>2020-07-07T09·31+0000
committertazjin <mail@tazj.in>2020-07-07T21·50+0000
commitc9afd22c442299c34330ed9ccd45c98b7ba3f3f8 (patch)
treed0eefdeba9f5d20c77ed7026943faa7e50eced2e /third_party/lieer/default.nix
parentcb52c9e41d87303d36b15efa4819c2fe47ff13b3 (diff)
chore(3p/lieer): Revert "Work around issues in Google Mail API" r/1237
This reverts commit 8b5859319347a0da80e9d7fd4dd1a7b5dec84e52.

Reason for revert: Google has fixed the upstream issue and this is not necessary anymore.

Change-Id: Ib1f7cfbc0e7e0997239514e9be75d2deab8c3c67
Reviewed-on: https://cl.tvl.fyi/c/depot/+/961
Tested-by: BuildkiteCI
Reviewed-by: glittershark <grfn@gws.fyi>
Diffstat (limited to 'third_party/lieer/default.nix')
-rw-r--r--third_party/lieer/default.nix5
1 files changed, 0 insertions, 5 deletions
diff --git a/third_party/lieer/default.nix b/third_party/lieer/default.nix
index 0ab40f752f..6dd4cecd1d 100644
--- a/third_party/lieer/default.nix
+++ b/third_party/lieer/default.nix
@@ -26,10 +26,6 @@ let
     export PROJECT_ID='${project}'
     cat ${./api_client.patch} | ${gettext}/bin/envsubst > $out
   '';
-  discoveryPatch = runCommand "discovery_doc.patch" {} ''
-    export DISCOVERY_DOC='${./gmail-api.json}'
-    cat ${./discovery_doc.patch} | ${gettext}/bin/envsubst > $out
-  '';
 in python3Packages.buildPythonApplication rec {
   name = "lieer-${version}";
   version = "1.0";
@@ -43,7 +39,6 @@ in python3Packages.buildPythonApplication rec {
 
   patches = [
     authPatch
-    discoveryPatch
     ./send_scope.patch
   ];