tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
dropbox: 31.4.25 -> 32.4.23
Peter Hoeg
8 years ago
18112eea
1b30d153
+20
-23
1 changed file
expand all
collapse all
unified
split
pkgs
applications
networking
dropbox
default.nix
+20
-23
pkgs/applications/networking/dropbox/default.nix
···
24
let
25
# NOTE: When updating, please also update in current stable,
26
# as older versions stop working
27
-
version = "31.4.25";
28
-
sha256 =
29
-
{
30
-
"x86_64-linux" = "02qla89gf7zawfk0kxd3xzr7vb91khj3p83bvh456ap51h0z5wzv";
31
-
"i686-linux" = "0sfh24qyc91q6ssn8lrzfdsv4jjy0hvgizcq3y3fk46zaa7jjxr2";
32
-
}."${stdenv.system}" or (throw "system ${stdenv.system} not supported");
33
34
-
arch =
35
-
{
36
-
"x86_64-linux" = "x86_64";
37
-
"i686-linux" = "x86";
38
-
}."${stdenv.system}" or (throw "system ${stdenv.system} not supported");
39
40
# relative location where the dropbox libraries are stored
41
appdir = "opt/dropbox";
42
43
-
libs =
44
-
[
45
-
dbus_libs fontconfig freetype gcc.cc glib libdrm libffi libICE libSM
46
-
libX11 libXcomposite libXext libXmu libXrender libxcb libxml2 libxslt
47
-
ncurses zlib
48
49
-
qtbase qtdeclarative qtwebkit
50
-
];
51
ldpath = stdenv.lib.makeLibraryPath libs;
52
53
desktopItem = makeDesktopItem {
···
141
paxmark m $out/${appdir}/dropbox
142
'';
143
144
-
meta = {
145
-
homepage = http://www.dropbox.com;
146
description = "Online stored folders (daemon version)";
147
-
maintainers = with lib.maintainers; [ ttuegel ];
148
-
platforms = [ "i686-linux" "x86_64-linux" ];
149
-
license = lib.licenses.unfree;
0
150
};
151
}
···
24
let
25
# NOTE: When updating, please also update in current stable,
26
# as older versions stop working
27
+
version = "32.4.23";
28
+
sha256 = {
29
+
"x86_64-linux" = "11jh3cyax652crhvjshi8gnvb8mpp7hfbgwqjx5n1q3j1rswm3d1";
30
+
"i686-linux" = "0xf0in3ywgd53v19h0v2sg69b6y2lbvr5y6jz10x3cighzr31qfp";
31
+
}."${stdenv.system}" or (throw "system ${stdenv.system} not supported");
0
32
33
+
arch = {
34
+
"x86_64-linux" = "x86_64";
35
+
"i686-linux" = "x86";
36
+
}."${stdenv.system}" or (throw "system ${stdenv.system} not supported");
0
37
38
# relative location where the dropbox libraries are stored
39
appdir = "opt/dropbox";
40
41
+
libs = [
42
+
dbus_libs fontconfig freetype gcc.cc glib libdrm libffi libICE libSM
43
+
libX11 libXcomposite libXext libXmu libXrender libxcb libxml2 libxslt
44
+
ncurses zlib
0
45
46
+
qtbase qtdeclarative qtwebkit
47
+
];
48
ldpath = stdenv.lib.makeLibraryPath libs;
49
50
desktopItem = makeDesktopItem {
···
138
paxmark m $out/${appdir}/dropbox
139
'';
140
141
+
meta = with lib; {
0
142
description = "Online stored folders (daemon version)";
143
+
homepage = http://www.dropbox.com;
144
+
maintainers = with maintainers; [ ttuegel ];
145
+
license = licenses.unfree;
146
+
platforms = [ "i686-linux" "x86_64-linux" ];
147
};
148
}