about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorMichael Weiss <dev.primeos@gmail.com>2021-06-28 19:48:25 +0200
committerGitHub <noreply@github.com>2021-06-28 19:48:25 +0200
commit498f4ee2436d5c4c2127864ecfcf2c5702211adc (patch)
treea45faa91727a3b102e544965cded08b5db0420dc /pkgs
parent367a53a82b0a3ffe6c1ea4261c22764129994669 (diff)
parent3864c36b790f253e5109f833a788ece7e2dfbaa4 (diff)
downloadnixlib-498f4ee2436d5c4c2127864ecfcf2c5702211adc.tar
nixlib-498f4ee2436d5c4c2127864ecfcf2c5702211adc.tar.gz
nixlib-498f4ee2436d5c4c2127864ecfcf2c5702211adc.tar.bz2
nixlib-498f4ee2436d5c4c2127864ecfcf2c5702211adc.tar.lz
nixlib-498f4ee2436d5c4c2127864ecfcf2c5702211adc.tar.xz
nixlib-498f4ee2436d5c4c2127864ecfcf2c5702211adc.tar.zst
nixlib-498f4ee2436d5c4c2127864ecfcf2c5702211adc.zip
Merge pull request #128496 from primeos/tdesktop
tdesktop: 2.8.1 -> 2.8.3
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/networking/instant-messengers/telegram/tdesktop/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/applications/networking/instant-messengers/telegram/tdesktop/default.nix b/pkgs/applications/networking/instant-messengers/telegram/tdesktop/default.nix
index 16f2c52e6446..76d149048a3a 100644
--- a/pkgs/applications/networking/instant-messengers/telegram/tdesktop/default.nix
+++ b/pkgs/applications/networking/instant-messengers/telegram/tdesktop/default.nix
@@ -23,7 +23,8 @@ let
   tg_owt = callPackage ./tg_owt.nix {};
 in mkDerivation rec {
   pname = "telegram-desktop";
-  version = "2.8.1";
+  version = "2.8.3";
+  # Note: Update via pkgs/applications/networking/instant-messengers/telegram/tdesktop/update.py
 
   # Telegram-Desktop with submodules
   src = fetchFromGitHub {
@@ -31,7 +32,7 @@ in mkDerivation rec {
     repo = "tdesktop";
     rev = "v${version}";
     fetchSubmodules = true;
-    sha256 = "1wf9806al6mzyd8nr37cdk6q2r354acixdqyjchi4r58drm99yv0";
+    sha256 = "1ywxsy3a99sdibipriblbzskmkqbnxwrz3lavfdr134wq8w8rjf7";
   };
 
   postPatch = ''
@@ -97,6 +98,7 @@ in mkDerivation rec {
 
   passthru = {
     inherit tg_owt;
+    updateScript = ./update.py;
   };
 
   meta = {