tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
bluejeans: 2.100.41.8 -> 2.100.102.8
Kamil Chmielewski
10 years ago
8d21fe21
7c61106b
+7
-7
1 changed file
expand all
collapse all
unified
split
pkgs
applications
networking
browsers
mozilla-plugins
bluejeans
default.nix
+7
-7
pkgs/applications/networking/browsers/mozilla-plugins/bluejeans/default.nix
···
15
in
16
17
stdenv.mkDerivation rec {
18
-
name = "bluejeans-2.100.41.8";
19
20
-
version = "2.100.41.8";
21
22
src = fetchurl {
23
-
url = "https://swdl.bluejeans.com/skinny/bjnplugin_2.100.41.8-1_amd64.deb";
24
-
sha256 = "013m17lpgi6nhw2df10wvrsnsjxy5n7z41ab69vj5m9h0prw9vd1";
25
};
26
27
phases = [ "unpackPhase" "installPhase" "fixupPhase" ];
···
36
plugins=$out/lib/mozilla/plugins
37
patchelf \
38
--set-rpath "${rpathPlugin}" \
39
-
$plugins/npbjnplugin_2.100.41.8.so
40
41
patchelf \
42
--set-rpath "${rpathInstaller}" \
43
-
$plugins/npbjninstallplugin_2.100.41.8.so
44
'';
45
46
dontStrip = true;
···
51
meta = {
52
homepage = http://bluejeans.com;
53
license = stdenv.lib.licenses.unfree;
54
-
maintainers = [ stdenv.lib.maintainers.ocharles ];
55
};
56
}
···
15
in
16
17
stdenv.mkDerivation rec {
18
+
name = "bluejeans-${version}";
19
20
+
version = "2.100.102.8";
21
22
src = fetchurl {
23
+
url = "https://swdl.bluejeans.com/skinny/bjnplugin_${version}-1_amd64.deb";
24
+
sha256 = "18f8jmhxvqy1yiiwlsssj7rjlfcb41xn16hnl6wv8r8r2mmic4v8";
25
};
26
27
phases = [ "unpackPhase" "installPhase" "fixupPhase" ];
···
36
plugins=$out/lib/mozilla/plugins
37
patchelf \
38
--set-rpath "${rpathPlugin}" \
39
+
$plugins/npbjnplugin_${version}.so
40
41
patchelf \
42
--set-rpath "${rpathInstaller}" \
43
+
$plugins/npbjninstallplugin_${version}.so
44
'';
45
46
dontStrip = true;
···
51
meta = {
52
homepage = http://bluejeans.com;
53
license = stdenv.lib.licenses.unfree;
54
+
maintainers = with maintainers; [ ocharles kamilchm ];
55
};
56
}