about summary refs log tree commit diff
path: root/users/tazjin/emacs
diff options
context:
space:
mode:
authorVincent Ambo <mail@tazj.in>2022-01-07T01·00+0300
committerclbot <clbot@tvl.fyi>2022-01-07T01·06+0000
commitf3364b1516ce28f7b956ec6f7fa1fbb712dcefa8 (patch)
treec9cdcccde30cce3b62b00cd928e6ae367d40f1af /users/tazjin/emacs
parent80defc2101e7b99a2f379230833676d8feda0343 (diff)
fix(tazjin/emacs): comment out tdlibCheck while telega is broken r/3523
telega.el currently throws errors related to some broken internal
logic about media codecs, which breaks this check in CI.

Change-Id: I8518977dba801dec90b966c84771ff0f59dcbb3d
Reviewed-on: https://cl.tvl.fyi/c/depot/+/4824
Tested-by: BuildkiteCI
Autosubmit: tazjin <tazjin@tvl.su>
Reviewed-by: tazjin <tazjin@tvl.su>
Diffstat (limited to 'users/tazjin/emacs')
-rw-r--r--users/tazjin/emacs/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/users/tazjin/emacs/default.nix b/users/tazjin/emacs/default.nix
index 0619353861..cfb748016b 100644
--- a/users/tazjin/emacs/default.nix
+++ b/users/tazjin/emacs/default.nix
@@ -166,7 +166,9 @@ in lib.fix(self: l: f: pkgs.writeShellScriptBin "tazjins-emacs" ''
 
     # Expose telega/tdlib version check as a target that is built in
     # CI.
+    #
+    # TODO(tazjin): uncomment when telega works again
     inherit tdlibCheck;
-    meta.targets = [ "tdlibCheck" ];
+    # meta.targets = [ "tdlibCheck" ];
   }) null identity
 ) {}