Skip to content

Commit

Permalink
dropbox: 31.4.25 -> 32.4.23
Browse files Browse the repository at this point in the history
  • Loading branch information
peterhoeg committed Aug 11, 2017
1 parent 1b30d15 commit 18112ee
Showing 1 changed file with 21 additions and 24 deletions.
45 changes: 21 additions & 24 deletions pkgs/applications/networking/dropbox/default.nix
Expand Up @@ -24,30 +24,27 @@
let
# NOTE: When updating, please also update in current stable,
# as older versions stop working
version = "31.4.25";
sha256 =
{
"x86_64-linux" = "02qla89gf7zawfk0kxd3xzr7vb91khj3p83bvh456ap51h0z5wzv";
"i686-linux" = "0sfh24qyc91q6ssn8lrzfdsv4jjy0hvgizcq3y3fk46zaa7jjxr2";
}."${stdenv.system}" or (throw "system ${stdenv.system} not supported");

arch =
{
"x86_64-linux" = "x86_64";
"i686-linux" = "x86";
}."${stdenv.system}" or (throw "system ${stdenv.system} not supported");
version = "32.4.23";
sha256 = {
"x86_64-linux" = "11jh3cyax652crhvjshi8gnvb8mpp7hfbgwqjx5n1q3j1rswm3d1";
"i686-linux" = "0xf0in3ywgd53v19h0v2sg69b6y2lbvr5y6jz10x3cighzr31qfp";
}."${stdenv.system}" or (throw "system ${stdenv.system} not supported");

arch = {
"x86_64-linux" = "x86_64";
"i686-linux" = "x86";
}."${stdenv.system}" or (throw "system ${stdenv.system} not supported");

# relative location where the dropbox libraries are stored
appdir = "opt/dropbox";

libs =
[
dbus_libs fontconfig freetype gcc.cc glib libdrm libffi libICE libSM
libX11 libXcomposite libXext libXmu libXrender libxcb libxml2 libxslt
ncurses zlib
libs = [
dbus_libs fontconfig freetype gcc.cc glib libdrm libffi libICE libSM
libX11 libXcomposite libXext libXmu libXrender libxcb libxml2 libxslt
ncurses zlib

qtbase qtdeclarative qtwebkit
];
qtbase qtdeclarative qtwebkit
];
ldpath = stdenv.lib.makeLibraryPath libs;

desktopItem = makeDesktopItem {
Expand Down Expand Up @@ -141,11 +138,11 @@ in mkDerivation {
paxmark m $out/${appdir}/dropbox
'';

meta = {
homepage = http://www.dropbox.com;
meta = with lib; {
description = "Online stored folders (daemon version)";
maintainers = with lib.maintainers; [ ttuegel ];
platforms = [ "i686-linux" "x86_64-linux" ];
license = lib.licenses.unfree;
homepage = http://www.dropbox.com;
maintainers = with maintainers; [ ttuegel ];
license = licenses.unfree;
platforms = [ "i686-linux" "x86_64-linux" ];
};
}

0 comments on commit 18112ee

Please sign in to comment.