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
24
let
25
25
# NOTE: When updating, please also update in current stable,
26
26
# as older versions stop working
27
27
-
version = "31.4.25";
28
28
-
sha256 =
29
29
-
{
30
30
-
"x86_64-linux" = "02qla89gf7zawfk0kxd3xzr7vb91khj3p83bvh456ap51h0z5wzv";
31
31
-
"i686-linux" = "0sfh24qyc91q6ssn8lrzfdsv4jjy0hvgizcq3y3fk46zaa7jjxr2";
32
32
-
}."${stdenv.system}" or (throw "system ${stdenv.system} not supported");
27
27
+
version = "32.4.23";
28
28
+
sha256 = {
29
29
+
"x86_64-linux" = "11jh3cyax652crhvjshi8gnvb8mpp7hfbgwqjx5n1q3j1rswm3d1";
30
30
+
"i686-linux" = "0xf0in3ywgd53v19h0v2sg69b6y2lbvr5y6jz10x3cighzr31qfp";
31
31
+
}."${stdenv.system}" or (throw "system ${stdenv.system} not supported");
33
32
34
34
-
arch =
35
35
-
{
36
36
-
"x86_64-linux" = "x86_64";
37
37
-
"i686-linux" = "x86";
38
38
-
}."${stdenv.system}" or (throw "system ${stdenv.system} not supported");
33
33
+
arch = {
34
34
+
"x86_64-linux" = "x86_64";
35
35
+
"i686-linux" = "x86";
36
36
+
}."${stdenv.system}" or (throw "system ${stdenv.system} not supported");
39
37
40
38
# relative location where the dropbox libraries are stored
41
39
appdir = "opt/dropbox";
42
40
43
43
-
libs =
44
44
-
[
45
45
-
dbus_libs fontconfig freetype gcc.cc glib libdrm libffi libICE libSM
46
46
-
libX11 libXcomposite libXext libXmu libXrender libxcb libxml2 libxslt
47
47
-
ncurses zlib
41
41
+
libs = [
42
42
+
dbus_libs fontconfig freetype gcc.cc glib libdrm libffi libICE libSM
43
43
+
libX11 libXcomposite libXext libXmu libXrender libxcb libxml2 libxslt
44
44
+
ncurses zlib
48
45
49
49
-
qtbase qtdeclarative qtwebkit
50
50
-
];
46
46
+
qtbase qtdeclarative qtwebkit
47
47
+
];
51
48
ldpath = stdenv.lib.makeLibraryPath libs;
52
49
53
50
desktopItem = makeDesktopItem {
···
141
138
paxmark m $out/${appdir}/dropbox
142
139
'';
143
140
144
144
-
meta = {
145
145
-
homepage = http://www.dropbox.com;
141
141
+
meta = with lib; {
146
142
description = "Online stored folders (daemon version)";
147
147
-
maintainers = with lib.maintainers; [ ttuegel ];
148
148
-
platforms = [ "i686-linux" "x86_64-linux" ];
149
149
-
license = lib.licenses.unfree;
143
143
+
homepage = http://www.dropbox.com;
144
144
+
maintainers = with maintainers; [ ttuegel ];
145
145
+
license = licenses.unfree;
146
146
+
platforms = [ "i686-linux" "x86_64-linux" ];
150
147
};
151
148
}