···127128- `himalaya` has been updated to `0.8.0`, which drops the native TLS support (in favor of Rustls) and add OAuth 2.0 support. See the [release note](https://github.com/soywod/himalaya/releases/tag/v0.8.0) for more details.
12900130- The [services.caddy.acmeCA](#opt-services.caddy.acmeCA) option now defaults to `null` instead of `"https://acme-v02.api.letsencrypt.org/directory"`, to use all of Caddy's default ACME CAs and enable Caddy's automatic issuer fallback feature by default, as recommended by upstream.
131132- The default priorities of [`services.nextcloud.phpOptions`](#opt-services.nextcloud.phpOptions) have changed. This means that e.g.
···127128- `himalaya` has been updated to `0.8.0`, which drops the native TLS support (in favor of Rustls) and add OAuth 2.0 support. See the [release note](https://github.com/soywod/himalaya/releases/tag/v0.8.0) for more details.
129130+- `nix-prefetch-git` now ignores global and user git config, to improve reproducibility.
131+132- The [services.caddy.acmeCA](#opt-services.caddy.acmeCA) option now defaults to `null` instead of `"https://acme-v02.api.letsencrypt.org/directory"`, to use all of Caddy's default ACME CAs and enable Caddy's automatic issuer fallback feature by default, as recommended by upstream.
133134- The default priorities of [`services.nextcloud.phpOptions`](#opt-services.nextcloud.phpOptions) have changed. This means that e.g.
+6-3
pkgs/build-support/fetchgit/nix-prefetch-git
···293 local rev="${3:-HEAD}"
294295 if [ -n "$fetchLFS" ]; then
296- tmpHomePath="$(mktemp -d "${TMPDIR:-/tmp}/nix-prefetch-git-tmp-home-XXXXXXXXXX")"
297- exit_handlers+=(remove_tmpHomePath)
298- HOME="$tmpHomePath"
299 clean_git lfs install
300 fi
301···416if test -z "$branchName"; then
417 branchName=fetchgit
418fi
000000419420if test -n "$builder"; then
421 test -n "$out" -a -n "$url" -a -n "$rev" || usage
···293 local rev="${3:-HEAD}"
294295 if [ -n "$fetchLFS" ]; then
000296 clean_git lfs install
297 fi
298···413if test -z "$branchName"; then
414 branchName=fetchgit
415fi
416+417+tmpHomePath="$(mktemp -d "${TMPDIR:-/tmp}/nix-prefetch-git-tmp-home-XXXXXXXXXX")"
418+exit_handlers+=(remove_tmpHomePath)
419+HOME="$tmpHomePath"
420+unset XDG_CONFIG_HOME
421+export GIT_CONFIG_NOSYSTEM=1
422423if test -n "$builder"; then
424 test -n "$out" -a -n "$url" -a -n "$rev" || usage