telegram-desktop.tg_owt: 0-unstable-2024-08-04 -> 0-unstable-2024-10-28 (#353220)

authored by Nick Cao and committed by GitHub 650fe873 f3e5a264

+13 -16
+10
pkgs/applications/networking/instant-messengers/telegram/kotatogram-desktop/default.nix
··· 27 27 fetchSubmodules = true; 28 28 }; 29 29 30 + patches = (oldAttrs.patches or []) ++ [ 31 + (fetchpatch { 32 + url = "https://webrtc.googlesource.com/src/+/e7d10047096880feb5e9846375f2da54aef91202%5E%21/?format=TEXT"; 33 + decode = "base64 -d"; 34 + stripLen = 1; 35 + extraPrefix = "src/"; 36 + hash = "sha256-goxnuRRbwcdfIk1jFaKGiKCTCYn2saEj7En1Iyglzko="; 37 + }) 38 + ]; 39 + 30 40 nativeBuildInputs = oldAttrs.nativeBuildInputs ++ [ yasm ]; 31 41 }); 32 42
+3 -16
pkgs/applications/networking/instant-messengers/telegram/telegram-desktop/tg_owt.nix
··· 2 2 lib, 3 3 stdenv, 4 4 fetchFromGitHub, 5 - fetchpatch2, 6 5 pkg-config, 7 6 cmake, 8 7 ninja, ··· 34 33 35 34 stdenv.mkDerivation { 36 35 pname = "tg_owt"; 37 - version = "0-unstable-2024-08-04"; 36 + version = "0-unstable-2024-10-28"; 38 37 39 38 src = fetchFromGitHub { 40 39 owner = "desktop-app"; 41 40 repo = "tg_owt"; 42 - rev = "dc17143230b5519f3c1a8da0079e00566bd4c5a8"; 43 - hash = "sha256-7j7hBIOXEdNJDnDSVUqy234nkTCaeZ9tDAzqvcuaq0o="; 41 + rev = "8198c4d8b91e22d68eb5c7327fd408e3b6abcc79"; 42 + hash = "sha256-3sLa3Px0VWgRYqnnLlwLnx+WWnneqZyhQPrRMBriXQA="; 44 43 fetchSubmodules = true; 45 44 }; 46 - 47 - patches = [ 48 - # Remove usage of AVCodecContext::reordered_opaque 49 - (fetchpatch2 { 50 - name = "webrtc-ffmpeg-7.patch"; 51 - url = "https://webrtc.googlesource.com/src/+/e7d10047096880feb5e9846375f2da54aef91202%5E%21/?format=TEXT"; 52 - decode = "base64 -d"; 53 - stripLen = 1; 54 - extraPrefix = "src/"; 55 - hash = "sha256-EdwHeVko8uDsP5GTw2ryWiQgRVCAdPc1me6hySdiwMU="; 56 - }) 57 - ]; 58 45 59 46 postPatch = lib.optionalString stdenv.hostPlatform.isLinux '' 60 47 substituteInPlace src/modules/desktop_capture/linux/wayland/egl_dmabuf.cc \