about summary refs log tree commit diff
path: root/pkgs/applications/networking/browsers
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2020-01-10 20:38:35 -0500
committerGitHub <noreply@github.com>2020-01-10 20:38:35 -0500
commit28eefd1ae28785debd21bea58e1b793ac9ee13aa (patch)
tree271978af7e6b8f61c65abdfa4f9e8d0b10b8e508 /pkgs/applications/networking/browsers
parent6bd6f26835ebdabaa8c2f207e906e6d37f33b914 (diff)
parent741db8c3b07a2903dd52b769285e24db7f8cc6a1 (diff)
downloadnixlib-28eefd1ae28785debd21bea58e1b793ac9ee13aa.tar
nixlib-28eefd1ae28785debd21bea58e1b793ac9ee13aa.tar.gz
nixlib-28eefd1ae28785debd21bea58e1b793ac9ee13aa.tar.bz2
nixlib-28eefd1ae28785debd21bea58e1b793ac9ee13aa.tar.lz
nixlib-28eefd1ae28785debd21bea58e1b793ac9ee13aa.tar.xz
nixlib-28eefd1ae28785debd21bea58e1b793ac9ee13aa.tar.zst
nixlib-28eefd1ae28785debd21bea58e1b793ac9ee13aa.zip
Merge pull request #77245 from turboMaCk/google-talk-plugin-sha1-to-sha256
google_talk_plugin: sha1 -> sha256
Diffstat (limited to 'pkgs/applications/networking/browsers')
-rw-r--r--pkgs/applications/networking/browsers/mozilla-plugins/google-talk-plugin/default.nix10
1 files changed, 5 insertions, 5 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 bde4ce15d7c0..93f2ab2adfa3 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
@@ -48,21 +48,21 @@ in
 stdenv.mkDerivation rec {
   pname = "google-talk-plugin";
 
-  # 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'
+  # You can get the upstream version and SHA-256 hash from the following URLs:
+  # curl -s http://dl.google.com/linux/talkplugin/deb/dists/stable/main/binary-amd64/Packages | grep -E 'Version|SHA256'
+  # curl -s http://dl.google.com/linux/talkplugin/deb/dists/stable/main/binary-i386/Packages | grep -E 'Version|SHA256'
   version = "5.41.3.0";
 
   src =
     if stdenv.hostPlatform.system == "x86_64-linux" then
       fetchurl {
         url = "${baseURL}/google-talkplugin_${version}-1_amd64.deb";
-        sha1 = "0bbc3d6997ba22ce712d93e5bc336c894b54fc81";
+        sha256 = "af7e23d2b6215afc547f96615b99f04e0561557cc58c0c9302364b5a3840d97d";
       }
     else if stdenv.hostPlatform.system == "i686-linux" then
       fetchurl {
         url = "${baseURL}/google-talkplugin_${version}-1_i386.deb";
-        sha1 = "6eae0544858f85c68b0cc46d7786e990bd94f139";
+        sha256 = "4c46d2b7f2018640288cd7ac49adc47e309d0beadfd979eb03030e672016b4a7";
       }
     else throw "Google Talk does not support your platform.";