diff options
author | Raghav Gururajan <rg@raghavgururajan.name> | 2021-02-18 06:24:13 -0500 |
---|---|---|
committer | Leo Prikler <leo.prikler@student.tugraz.at> | 2021-02-18 15:51:01 +0100 |
commit | 81ffe22415a7f9bdeb70833089c663af2e5f60f1 (patch) | |
tree | 7981adbf20d9aa252fe6a132832f2d8c95941e4f | |
parent | 26db713f0c6f0bcfae94167e2a66d8aececdc03b (diff) | |
download | guix-81ffe22415a7f9bdeb70833089c663af2e5f60f1.tar guix-81ffe22415a7f9bdeb70833089c663af2e5f60f1.tar.gz |
gnu: webrtc-for-telegram-desktop: Update to revision 83.
* gnu/packages/telegram.scm (webrtc-for-telegram-desktop): Update to revision 83.
[inputs]: Add libx11, libxext, and libxtst.
Signed-off-by: Leo Prikler <leo.prikler@student.tugraz.at>
-rw-r--r-- | gnu/packages/telegram.scm | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/gnu/packages/telegram.scm b/gnu/packages/telegram.scm index 9b27b86e50..660234f549 100644 --- a/gnu/packages/telegram.scm +++ b/gnu/packages/telegram.scm @@ -69,8 +69,8 @@ #:use-module (guix build-system qt)) (define-public webrtc-for-telegram-desktop - (let ((commit "fa86fcc00c218813d61a272a56feab55c76a1ab9") - (revision "52")) + (let ((commit "a19877363082da634a3c851a4698376504d2eaee") + (revision "83")) (hidden-package (package (name "webrtc-for-telegram-desktop") @@ -86,7 +86,7 @@ (file-name (git-file-name name version)) (sha256 - (base32 "06gcrlym6vqqw7zlds9lpwyg37d5m81d87h16aps19v0v9gzan0l")) + (base32 "0961zm1m1mc2kh54dx5ax95q8sw13impvpjvg9jv12bmfkgm17wr")) (modules '((guix build utils) (ice-9 ftw) (srfi srfi-1))) @@ -158,7 +158,10 @@ ("openssl" ,openssl) ("opus" ,opus) ("protobuf" ,protobuf) - ("pulseaudio" ,pulseaudio))) + ("pulseaudio" ,pulseaudio) + ("x11" ,libx11) + ("xext" ,libxext) + ("xtst" ,libxtst))) (synopsis "WebRTC support for Telegram Desktop") (description "WebRTC-for-Telegram-Desktop is a custom WebRTC fork by Telegram project, for its use in telegram desktop client.") |