83465be599
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>
21 lines
723 B
Nix
21 lines
723 B
Nix
# Pin a working combination of telega.el & tdlib, as these are totally
|
|
# out-of-sync in nixpkgs.
|
|
{ pkgs, ... }:
|
|
|
|
let
|
|
tdlib = pkgs.originals.tdlib.overrideAttrs(old: {
|
|
version = "1.6.6";
|
|
src = pkgs.fetchFromGitHub {
|
|
owner = "tdlib";
|
|
repo = "td";
|
|
rev = "c78fbe4bc5e31395e08f916816704e8051f27296"; # 1.6.6
|
|
sha256 = "18ny990cvnwj5sd5jp49n0jn8b8fa8iszw4vxvsqdnw00srw0ggd";
|
|
};
|
|
});
|
|
# Emacs packages use some sort of fixed point override scheme and
|
|
# don't expose individual overrides in the override-functor, hence the
|
|
# mess below.
|
|
in pkgs.originals.telega.overrideAttrs(old: {
|
|
buildInputs = [ tdlib ] ++
|
|
(builtins.filter (p: !(p ? pname) || p.pname != "tdlib") old.buildInputs);
|
|
})
|