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: 869bb2e48643
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: e028e34606bd
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Jul 22, 2017

  1. sauce-connect: 4.4.7 -> 4.4.8

    lo1tuma committed Jul 22, 2017
    Copy the full SHA
    6589a83 View commit details

Commits on Jul 23, 2017

  1. Merge pull request #27561 from holidaycheck/sauceconnect-4.4.8

    sauce-connect: 4.4.7 -> 4.4.8
    FRidh authored Jul 23, 2017
    Copy the full SHA
    e028e34 View commit details
Showing with 4 additions and 4 deletions.
  1. +4 −4 pkgs/development/tools/sauce-connect/default.nix
8 changes: 4 additions & 4 deletions pkgs/development/tools/sauce-connect/default.nix
Original file line number Diff line number Diff line change
@@ -4,18 +4,18 @@ with lib;

stdenv.mkDerivation rec {
name = "sauce-connect-${version}";
version = "4.4.7";
version = "4.4.8";

src = fetchurl (
if stdenv.system == "x86_64-linux" then {
url = "https://saucelabs.com/downloads/sc-${version}-linux.tar.gz";
sha256 = "0n7x9mvv6sww0h77k3d8rms78vah0j48ndsv4vnxq9znwjiglmva";
sha256 = "1y6jmz0kdaz1fq9sirwxznzw52if6ypd0dp9mk7dkpipy0bx7pz6";
} else if stdenv.system == "i686-linux" then {
url = "https://saucelabs.com/downloads/sc-${version}-linux32.tar.gz";
sha256 = "1vwp8iqc5sk5kf7r86dld4767w4sm36hympnh1n2qza57ni7vy0g";
sha256 = "13nd2g1z4nvc3fa30xr3jnkqcy3fv4751s7ws4l93p7x6nc4aw1n";
} else {
url = "https://saucelabs.com/downloads/sc-${version}-osx.zip";
sha256 = "1dwjysj3kjydz096bm5x0s1g3jm4a7y0qkgbsc6bwl44vxz81f66";
sha256 = "0f8kcx7qd6bqbd74y6n83lb52zban9k631qkv1vyddvs9pjsxmpg";
}
);