Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 0b0ea40ac305
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: ecaef55b0554
Choose a head ref
  • 2 commits
  • 1 file changed
  • 1 contributor

Commits on Jun 1, 2017

  1. dropbox: 25.4.28 -> 26.4.24

    (cherry picked from commit 2099f0a)
    ttuegel committed Jun 1, 2017
    Copy the full SHA
    0fdd1b4 View commit details
  2. dropbox: 26.4.24 -> 27.4.22

    (cherry picked from commit fa19529)
    ttuegel committed Jun 1, 2017
    Copy the full SHA
    ecaef55 View commit details
Showing with 4 additions and 4 deletions.
  1. +4 −4 pkgs/applications/networking/dropbox/default.nix
8 changes: 4 additions & 4 deletions pkgs/applications/networking/dropbox/default.nix
Original file line number Diff line number Diff line change
@@ -23,11 +23,11 @@
let
# NOTE: When updating, please also update in current stable,
# as older versions stop working
version = "25.4.28";
version = "27.4.22";
sha256 =
{
"x86_64-linux" = "0r0bdl37rkar3nijxslp493mic5qd20l125p1kghqbradvh57rl3";
"i686-linux" = "1difq6ky1klvminbzjivvq6ap3l296gij0ghgyy1n4lca3jqq648";
"x86_64-linux" = "1v1q799dj0bffg3s98ifzpsccjaajl221h5ckaqijlmpzr2q5hhh";
"i686-linux" = "1qsw6c0mb0n0djz7xpfixispi9k68kbvf8dc92frpcbcvm0h845y";
}."${stdenv.system}" or (throw "system ${stdenv.system} not supported");

arch =
@@ -62,7 +62,7 @@ in stdenv.mkDerivation {
name = "dropbox-${version}";
src = fetchurl {
name = "dropbox-${version}.tar.gz";
url = "https://dl-web.dropbox.com/u/17/dropbox-lnx.${arch}-${version}.tar.gz";
url = "https://clientupdates.dropboxstatic.com/dbx-releng/client/dropbox-lnx.${arch}-${version}.tar.gz";
inherit sha256;
};