diff options
author | Giovanni Biscuolo <g@xelera.eu> | 2022-09-22 14:39:13 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2022-10-02 23:18:43 +0200 |
commit | abc232c42d0a80143aba5875213e6d5a843e3d25 (patch) | |
tree | e0995d5655d9556cf229ca3f50c17a4f9ba06f6f | |
parent | 782c7455e1ea3785e8c7e9b300d55c9ebb441a35 (diff) | |
download | guix-abc232c42d0a80143aba5875213e6d5a843e3d25.tar guix-abc232c42d0a80143aba5875213e6d5a843e3d25.tar.gz |
gnu: Add tdlib-1.8.0.
This is needed for emacs-telega 0.8.3
* gnu/packages/messaging.scm (tdlib-1.8.0): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
-rw-r--r-- | gnu/packages/messaging.scm | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm index c19ec45a35..dcd602c7c0 100644 --- a/gnu/packages/messaging.scm +++ b/gnu/packages/messaging.scm @@ -36,6 +36,7 @@ ;;; Copyright © 2022 Jai Vetrivelan <jaivetrivelan@gmail.com> ;;; Copyright © 2022 Jack Hill <jackhill@jackhill.us> ;;; Copyright © 2022 Maxim Cournoyer <maxim.cournoyer@gmail.com> +;;; Copyright © 2022 Giovanni Biscuolo <g@xelera.eu> ;;; ;;; This file is part of GNU Guix. ;;; @@ -2685,6 +2686,20 @@ support for high performance Telegram Bot creation.") (home-page "https://core.telegram.org/tdlib") (license license:boost1.0))) +(define-public tdlib-1.8.0 + (package + (inherit tdlib) + (name "tdlib-1.8.0") + (version "1.8.0") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/tdlib/td") + (commit (string-append "v" version)))) + (sha256 + (base32 + "19psqpyh9a2kzfdhgqkirpif4x8pzy89phvi59dq155y30a3661q")))))) + (define-public purple-mm-sms (package (name "purple-mm-sms") |