tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
google-talk-plugin: 5.41.0.0 -> 5.41.3.0
Robert Helgesson
9 years ago
782e2fa8
0b8e3898
+3
-3
1 changed file
expand all
collapse all
unified
split
pkgs
applications
networking
browsers
mozilla-plugins
google-talk-plugin
default.nix
+3
-3
pkgs/applications/networking/browsers/mozilla-plugins/google-talk-plugin/default.nix
···
51
51
# You can get the upstream version and SHA-1 hash from the following URLs:
52
52
# curl -s http://dl.google.com/linux/talkplugin/deb/dists/stable/main/binary-amd64/Packages | grep -E 'Version|SHA1'
53
53
# curl -s http://dl.google.com/linux/talkplugin/deb/dists/stable/main/binary-i386/Packages | grep -E 'Version|SHA1'
54
54
-
version = "5.41.0.0";
54
54
+
version = "5.41.3.0";
55
55
56
56
src =
57
57
if stdenv.system == "x86_64-linux" then
58
58
fetchurl {
59
59
url = "${baseURL}/google-talkplugin_${version}-1_amd64.deb";
60
60
-
sha1 = "1c3cc0411444587b56178de4868eb5d0ff742ec0";
60
60
+
sha1 = "0bbc3d6997ba22ce712d93e5bc336c894b54fc81";
61
61
}
62
62
else if stdenv.system == "i686-linux" then
63
63
fetchurl {
64
64
url = "${baseURL}/google-talkplugin_${version}-1_i386.deb";
65
65
-
sha1 = "0d31d726c5e9a49917e2749e73386b1c0fdcb376";
65
65
+
sha1 = "6eae0544858f85c68b0cc46d7786e990bd94f139";
66
66
}
67
67
else throw "Google Talk does not support your platform.";
68
68