Merge pull request #14639 from bendlas/update-dropbox-master

dropbox: 3.14.7 -> 3.18.1

+5 -5
+2 -2
pkgs/applications/networking/dropbox-cli/default.nix
··· 16 16 phases = "unpackPhase installPhase"; 17 17 18 18 installPhase = '' 19 - mkdir -p "$out/bin/" 19 + mkdir -p "$out/bin/" "$out/share/applications" 20 + cp data/dropbox.desktop "$out/share/applications" 20 21 substitute "dropbox.in" "$out/bin/dropbox" \ 21 22 --replace '@PACKAGE_VERSION@' ${version} \ 22 23 --replace '@DESKTOP_FILE_DIR@' "$out/share/applications" \ ··· 24 25 --replace '@IMAGEDATA64@' '"too-lazy-to-fix"' 25 26 sed -i 's:db_path = .*:db_path = "${dropboxd}":' $out/bin/dropbox 26 27 chmod +x "$out/bin/"* 27 - mv $out/bin/dropbox $out/bin/dropbox-cli 28 28 patchShebangs "$out/bin" 29 29 ''; 30 30
+3 -3
pkgs/applications/networking/dropbox/default.nix
··· 20 20 21 21 let 22 22 # NOTE: When updating, please also update in current stable, as older versions stop working 23 - version = "3.14.7"; 23 + version = "3.18.1"; 24 24 sha256 = 25 25 { 26 - "x86_64-linux" = "1pwmghpr0kyca2biysyk90kk9k6ffv4i95vs5rq96vc0zbckws6n"; 27 - "i686-linux" = "08yqrxh09cfd80kbiq1f2sirx9s85acij4khpklvvwrnf2x1i1zm"; 26 + "x86_64-linux" = "1qdahr8xzk3zrrv89335l3aa2gfgjn1ymfixj9zgipv34grkjghm"; 27 + "i686-linux" = "015bjkr2dwyac410i398qm1v60rqln539wcj5f25q776haycbcji"; 28 28 }."${stdenv.system}" or (throw "system ${stdenv.system} not supported"); 29 29 30 30 arch =