nixpkgs/pkgs/development/tools/sauce-connect/default.nix

46 lines
1.4 KiB
Nix
Raw Normal View History

2016-02-25 10:25:06 +00:00
{ stdenv, lib, fetchurl, zlib, unzip }:
with lib;
stdenv.mkDerivation rec {
name = "sauce-connect-${version}";
2018-03-07 16:06:08 +00:00
version = "4.4.12";
src = fetchurl (
if stdenv.hostPlatform.system == "x86_64-linux" then {
url = "https://saucelabs.com/downloads/sc-${version}-linux.tar.gz";
2018-03-07 16:06:08 +00:00
sha256 = "1yqvx64bgiq27hdhwkzgmzyib8pbjn1idpq6783srxq64asf6iyw";
} else if stdenv.hostPlatform.system == "i686-linux" then {
url = "https://saucelabs.com/downloads/sc-${version}-linux32.tar.gz";
2018-03-07 16:06:08 +00:00
sha256 = "02kib56lv4lhwkj5r15484lvvbyjvf9ydi5vccsmxgsxrzmddnl6";
2016-02-25 10:25:06 +00:00
} else {
url = "https://saucelabs.com/downloads/sc-${version}-osx.zip";
2018-03-07 16:06:08 +00:00
sha256 = "1gqsbw9f6nachk3c86knbqq417smqyf19mi63fmrfxrbxzy2fkv2";
}
);
2016-02-25 10:25:06 +00:00
buildInputs = [ unzip ];
patchPhase = stdenv.lib.optionalString stdenv.isLinux ''
patchelf \
--set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \
--set-rpath "$out/lib:${makeLibraryPath [zlib]}" \
bin/sc
'';
installPhase = ''
mkdir -p $out
cp -r * $out
'';
dontStrip = true;
meta = {
description = "A secure tunneling app for executing tests securely when testing behind firewalls";
license = licenses.unfree;
homepage = https://docs.saucelabs.com/reference/sauce-connect/;
maintainers = with maintainers; [offline];
2016-02-25 10:25:06 +00:00
platforms = platforms.linux ++ platforms.darwin;
};
}