tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
google-talk-plugin: 5.4.2.0 -> 5.41.0.0
Eelco Dolstra
9 years ago
86c45ba5
1da836af
+5
-3
2 changed files
expand all
collapse all
unified
split
pkgs
applications
networking
browsers
mozilla-plugins
google-talk-plugin
default.nix
preload.c
+4
-3
pkgs/applications/networking/browsers/mozilla-plugins/google-talk-plugin/default.nix
···
32
32
xorg.libXfixes
33
33
xorg.libXrender
34
34
xorg.libXrandr
35
35
+
xorg.libXext
35
36
stdenv.cc.cc
36
37
alsaLib
37
38
libpulseaudio
···
50
51
# You can get the upstream version and SHA-1 hash from the following URLs:
51
52
# curl -s http://dl.google.com/linux/talkplugin/deb/dists/stable/main/binary-amd64/Packages | grep -E 'Version|SHA1'
52
53
# curl -s http://dl.google.com/linux/talkplugin/deb/dists/stable/main/binary-i386/Packages | grep -E 'Version|SHA1'
53
53
-
version = "5.4.2.0";
54
54
+
version = "5.41.0.0";
54
55
55
56
src =
56
57
if stdenv.system == "x86_64-linux" then
57
58
fetchurl {
58
59
url = "${baseURL}/google-talkplugin_${version}-1_amd64.deb";
59
59
-
sha1 = "d75fad757750b4830c4e401ade92b4993e2a4ab2";
60
60
+
sha1 = "1c3cc0411444587b56178de4868eb5d0ff742ec0";
60
61
}
61
62
else if stdenv.system == "i686-linux" then
62
63
fetchurl {
63
64
url = "${baseURL}/google-talkplugin_${version}-1_i386.deb";
64
64
-
sha1 = "410872377b0bdac06b580c5e1755a3a3c712144b";
65
65
+
sha1 = "0d31d726c5e9a49917e2749e73386b1c0fdcb376";
65
66
}
66
67
else throw "Google Talk does not support your platform.";
67
68
+1
pkgs/applications/networking/browsers/mozilla-plugins/google-talk-plugin/preload.c
···
6
6
#include <stdio.h>
7
7
#include <stdarg.h>
8
8
#include <stdlib.h>
9
9
+
#include <string.h>
9
10
#include <dlfcn.h>
10
11
#include <sys/types.h>
11
12
#include <sys/stat.h>