summary refs log tree commit diff
path: root/pkgs/applications/networking
diff options
context:
space:
mode:
authorJörg Thalheim <joerg@higgsboson.tk>2017-01-14 01:16:03 +0100
committerGitHub <noreply@github.com>2017-01-14 01:16:03 +0100
commit40083709922eca7fd9da0ebffe79654fe6fb5f24 (patch)
treef45b3a14970c151498fbdf80c6c1c776ac6eb063 /pkgs/applications/networking
parentd7dbbf5365ada4ff61b8468f49c3da6f7c4be275 (diff)
parent782e2fa807a5b5de2284b7e009105ed58d8a8e4e (diff)
downloadnixlib-40083709922eca7fd9da0ebffe79654fe6fb5f24.tar
nixlib-40083709922eca7fd9da0ebffe79654fe6fb5f24.tar.gz
nixlib-40083709922eca7fd9da0ebffe79654fe6fb5f24.tar.bz2
nixlib-40083709922eca7fd9da0ebffe79654fe6fb5f24.tar.lz
nixlib-40083709922eca7fd9da0ebffe79654fe6fb5f24.tar.xz
nixlib-40083709922eca7fd9da0ebffe79654fe6fb5f24.tar.zst
nixlib-40083709922eca7fd9da0ebffe79654fe6fb5f24.zip
Merge pull request #21863 from rycee/bump/google-talk-plugin
google-talk-plugin: 5.41.0.0 -> 5.41.3.0
Diffstat (limited to 'pkgs/applications/networking')
-rw-r--r--pkgs/applications/networking/browsers/mozilla-plugins/google-talk-plugin/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/applications/networking/browsers/mozilla-plugins/google-talk-plugin/default.nix b/pkgs/applications/networking/browsers/mozilla-plugins/google-talk-plugin/default.nix
index 3e89fb731d32..461db272b12e 100644
--- a/pkgs/applications/networking/browsers/mozilla-plugins/google-talk-plugin/default.nix
+++ b/pkgs/applications/networking/browsers/mozilla-plugins/google-talk-plugin/default.nix
@@ -51,18 +51,18 @@ stdenv.mkDerivation rec {
   # You can get the upstream version and SHA-1 hash from the following URLs:
   # curl -s http://dl.google.com/linux/talkplugin/deb/dists/stable/main/binary-amd64/Packages | grep -E 'Version|SHA1'
   # curl -s http://dl.google.com/linux/talkplugin/deb/dists/stable/main/binary-i386/Packages | grep -E 'Version|SHA1'
-  version = "5.41.0.0";
+  version = "5.41.3.0";
 
   src =
     if stdenv.system == "x86_64-linux" then
       fetchurl {
         url = "${baseURL}/google-talkplugin_${version}-1_amd64.deb";
-        sha1 = "1c3cc0411444587b56178de4868eb5d0ff742ec0";
+        sha1 = "0bbc3d6997ba22ce712d93e5bc336c894b54fc81";
       }
     else if stdenv.system == "i686-linux" then
       fetchurl {
         url = "${baseURL}/google-talkplugin_${version}-1_i386.deb";
-        sha1 = "0d31d726c5e9a49917e2749e73386b1c0fdcb376";
+        sha1 = "6eae0544858f85c68b0cc46d7786e990bd94f139";
       }
     else throw "Google Talk does not support your platform.";