dropbox: 31.4.25 -> 32.4.23

+20 -23
+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 - 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"); 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"); 33 32 34 - arch = 35 - { 36 - "x86_64-linux" = "x86_64"; 37 - "i686-linux" = "x86"; 38 - }."${stdenv.system}" or (throw "system ${stdenv.system} not supported"); 33 + arch = { 34 + "x86_64-linux" = "x86_64"; 35 + "i686-linux" = "x86"; 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 - 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 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 48 45 49 - qtbase qtdeclarative qtwebkit 50 - ]; 46 + qtbase qtdeclarative qtwebkit 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 - meta = { 145 - homepage = http://www.dropbox.com; 141 + meta = with lib; { 146 142 description = "Online stored folders (daemon version)"; 147 - maintainers = with lib.maintainers; [ ttuegel ]; 148 - platforms = [ "i686-linux" "x86_64-linux" ]; 149 - license = lib.licenses.unfree; 143 + homepage = http://www.dropbox.com; 144 + maintainers = with maintainers; [ ttuegel ]; 145 + license = licenses.unfree; 146 + platforms = [ "i686-linux" "x86_64-linux" ]; 150 147 }; 151 148 }