diff options
author | Vincent Ambo <mail@tazj.in> | 2021-01-26T13·05+0300 |
---|---|---|
committer | tazjin <mail@tazj.in> | 2021-01-26T13·25+0000 |
commit | 83465be599f2ed8d55dae0262156869fb78240a1 (patch) | |
tree | ea0bfcc664ef7facb648286d7c489e53e6524ed2 /users/tazjin | |
parent | aa6e7f7c107a3222dc919abb54784625d106b5c8 (diff) |
feat(3p/telega): Pin tdlib version used for telega r/2146
Recent channel updates have caused some issues for telega.el, mostly because the version of tdlib (the C++ library for Telegram) and the Emacs package are out of sync. This overrides the version used in the Emacs package to a "known good" commit. It would be useful to change the tdlib derivation in nixpkgs to make this version mismatch a hard build error. Change-Id: I9c994f783e1cc17e933432507cd13b65697efd4a Reviewed-on: https://cl.tvl.fyi/c/depot/+/2445 Tested-by: BuildkiteCI Reviewed-by: Profpatsch <mail@profpatsch.de>
Diffstat (limited to 'users/tazjin')
-rw-r--r-- | users/tazjin/emacs/default.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/users/tazjin/emacs/default.nix b/users/tazjin/emacs/default.nix index 52e925e19757..f7ebcb1e22ef 100644 --- a/users/tazjin/emacs/default.nix +++ b/users/tazjin/emacs/default.nix @@ -15,7 +15,7 @@ let emacsWithPackages = (third_party.emacsPackagesGen third_party.emacs27).emacsWithPackages; # $PATH for binaries that need to be available to Emacs - emacsBinPath = lib.makeBinPath [ third_party.stableTelega ]; + emacsBinPath = lib.makeBinPath [ third_party.telega ]; identity = x: x; @@ -100,7 +100,7 @@ let tvl # patched / overridden versions of packages - depot.third_party.stableTelega + depot.third_party.telega depot.third_party.emacs.exwm depot.third_party.emacs.rcirc depot.third_party.emacs.vterm |