emacsPackages.telega: add missing dependency zlib for new tdlib.

This commit is contained in:
Vonfry
2025-12-01 20:23:59 +08:00
parent 6c16b7ce10
commit eb1c9adafd
@@ -549,7 +549,10 @@ let
# Telega has a server portion for it's network protocol
# elisp error
telega = (ignoreCompilationError super.telega).overrideAttrs (old: {
buildInputs = old.buildInputs ++ [ pkgs.tdlib ];
buildInputs = old.buildInputs ++ [
pkgs.tdlib
pkgs.zlib
];
nativeBuildInputs = old.nativeBuildInputs ++ [ pkgs.pkg-config ];
postPatch = ''