···666666 <varname>services.restic</varname> now uses a dedicated cache directory for every backup defined in <varname>services.restic.backups</varname>. The old global cache directory, <literal>/root/.cache/restic</literal>, is now unused and can be removed to free up disk space.
667667 </para>
668668 </listitem>
669669+ <listitem>
670670+ <para>
671671+ <literal>isync</literal>: The <literal>isync</literal> compatibility wrapper was removed and the Master/Slave
672672+ terminology has been deprecated and should be replaced with Far/Near in the configuration file.
673673+ </para>
674674+ </listitem>
669675 </itemizedlist>
670676 </section>
671677</section>
···120120 description = "Video, audio, and web conferencing that works together with the collaboration tools you use every day";
121121 homepage = "https://www.bluejeans.com";
122122 license = licenses.unfree;
123123- maintainers = with maintainers; [ veprbl ];
123123+ maintainers = with maintainers; [ ];
124124 platforms = [ "x86_64-linux" ];
125125 };
126126}
···2525}:
26262727let
2828- version = "3.3.1";
2828+ version = "3.7.2";
29293030 src = fetchurl {
3131 url = "https://github.com/bazelbuild/bazel/releases/download/${version}/bazel-${version}-dist.zip";
3232- sha256 = "0ir796kl8r9hpr3li26qsdy1z2lx2bv82zmk4a2s7q64clyg9wg0";
3232+ sha256 = "1cfrbs23lg0jnl22ddylx3clcjw7bdpbix7r5lqibab346s5n9fy";
3333 };
34343535 # Update with `eval $(nix-build -A bazel.updater)`,
···4949 srcs.io_bazel_rules_sass
5050 srcs.platforms
5151 # `bazel query` wants all of these to be available regardless of platform.
5252- srcs."java_tools_javac11_darwin-v8.0.zip"
5353- srcs."java_tools_javac11_linux-v8.0.zip"
5454- srcs."java_tools_javac11_windows-v8.0.zip"
5555- srcs."coverage_output_generator-v2.1.zip"
5252+ srcs."java_tools_javac11_darwin-v10.0.zip"
5353+ srcs."java_tools_javac11_linux-v10.0.zip"
5454+ srcs."java_tools_javac11_windows-v10.0.zip"
5555+ srcs."coverage_output_generator-v2.5.zip"
5656 srcs.build_bazel_rules_nodejs
5757- srcs."android_tools_pkg-0.19.0rc1.tar.gz"
5757+ srcs."android_tools_pkg-0.19.0rc3.tar.gz"
5858 srcs."bazel-toolchains-3.1.0.tar.gz"
5959+ srcs."com_github_grpc_grpc"
6060+ srcs.upb
5961 srcs.rules_pkg
6062 srcs.rules_cc
6163 srcs.rules_java
···98100 [ bash coreutils findutils gawk gnugrep gnutar gnused gzip which unzip file zip ];
99101100102 # Java toolchain used for the build and tests
101101- javaToolchain = "@bazel_tools//tools/jdk:toolchain_host${buildJdkName}";
103103+ javaToolchain = "@bazel_tools//tools/jdk:toolchain_${buildJdkName}";
102104103105 platforms = lib.platforms.linux ++ lib.platforms.darwin;
104106···112114 remote_java_tools = stdenv.mkDerivation {
113115 name = "remote_java_tools_${system}";
114116115115- src = srcDepsSet."java_tools_javac11_${system}-v8.0.zip";
117117+ src = srcDepsSet."java_tools_javac11_${system}-v10.0.zip";
116118117119 nativeBuildInputs = [ autoPatchelfHook unzip ];
118120 buildInputs = [ gcc-unwrapped ];
···169171 sourceRoot = ".";
170172171173 patches = [
172172- ./python-shebang.patch
173173-174174 # On Darwin, the last argument to gcc is coming up as an empty string. i.e: ''
175175 # This is breaking the build of any C target. This patch removes the last
176176 # argument if it's found to be an empty string.
177177 ../trim-last-argument-to-gcc-if-empty.patch
178178+179179+ # On Darwin, using clang 6 to build fails because of a linker error (see #105573),
180180+ # but using clang 7 fails because libarclite_macosx.a cannot be found when linking
181181+ # the xcode_locator tool.
182182+ # This patch removes using the -fobjc-arc compiler option and makes the code
183183+ # compile without automatic reference counting. Caveat: this leaks memory, but
184184+ # we accept this fact because xcode_locator is only a short-lived process used during the build.
185185+ ./no-arc.patch
178186179187 # --experimental_strict_action_env (which may one day become the default
180188 # see bazelbuild/bazel#2574) hardcodes the default
···370378 src/tools/xcode/realpath/BUILD \
371379 src/tools/xcode/stdredirect/BUILD \
372380 tools/osx/BUILD
381381+382382+ substituteInPlace scripts/bootstrap/compile.sh --replace ' -mmacosx-version-min=10.9' ""
373383374384 # nixpkgs's libSystem cannot use pthread headers directly, must import GCD headers instead
375385 sed -i -e "/#include <pthread\/spawn.h>/i #include <dispatch/dispatch.h>" src/main/cpp/blaze_util_darwin.cc
···4747def register_local_rc_exe_toolchains(*args, **kw): pass
4848def register_toolchains(*args, **kw): pass
4949def debian_deps(): pass
5050+def grpc_deps(): pass
5151+def grpc_extra_deps(): pass
5252+def bazel_skylib_workspace(): pass
50535154# execute the WORKSPACE like it was python code in this module,
5255# using all the function stubs from above.