about summary refs log tree commit diff
path: root/third_party/emacs
diff options
context:
space:
mode:
authorVincent Ambo <mail@tazj.in>2021-08-08T13·09+0300
committertazjin <mail@tazj.in>2021-08-08T13·18+0000
commit56c9fa9722c88d2e6b39396eb8de61c42e6f18e5 (patch)
treec7370c9c15c4ebff6dd90a99f071ae647d0b5b02 /third_party/emacs
parente7de89e06aad3ccb83eb4085be82449d8f81f56c (diff)
fix(tazjin/emacs): Temporary fixes to use unstable telega r/2711
The latest Emacs versions removed some (private) functions that telega
depends on, and this is fixed in HEAD of telega.el.

However, without these fixes, the unstable version of telega doesn't
build because the patch Nix tries to apply doesn't match the source
anymore.

The patch itself doesn't seem to do anything relevant for me.

Change-Id: Ib9a042c636cb438b2b15d231a07afd5c02be72ee
Reviewed-on: https://cl.tvl.fyi/c/depot/+/3294
Reviewed-by: tazjin <mail@tazj.in>
Tested-by: BuildkiteCI
Diffstat (limited to 'third_party/emacs')
-rw-r--r--third_party/emacs/telega.nix6
1 files changed, 6 insertions, 0 deletions
diff --git a/third_party/emacs/telega.nix b/third_party/emacs/telega.nix
new file mode 100644
index 0000000000..a4c034b242
--- /dev/null
+++ b/third_party/emacs/telega.nix
@@ -0,0 +1,6 @@
+# Temporary fix for unstable telega that tries to build with a broken patch.
+{ pkgs, ... }:
+
+pkgs.emacsPackages.melpaPackages.telega.overrideAttrs(old: {
+  patches = [];
+})