buildBazelPackage: set fetchConfigured default to true

+11 -1
+7
nixos/doc/manual/from_md/release-notes/rl-2111.section.xml
··· 56 56 this version for the entire lifecycle of the 21.11 release. 57 57 </para> 58 58 </listitem> 59 + <listitem> 60 + <para> 61 + Those making use of <literal>buildBazelPackage</literal> will 62 + need to regenerate the fetch hashes (preferred), or set 63 + <literal>fetchConfigured = false;</literal>. 64 + </para> 65 + </listitem> 59 66 </itemizedlist> 60 67 </section> 61 68 <section xml:id="other-notable-changes">
+3
nixos/doc/manual/release-notes/rl-2111.section.md
··· 24 24 * PHP 7.3 is no longer supported due to upstream not supporting this 25 25 version for the entire lifecycle of the 21.11 release. 26 26 27 + * Those making use of `buildBazelPackage` will need to regenerate the fetch 28 + hashes (preferred), or set `fetchConfigured = false;`. 29 + 27 30 ## Other Notable Changes
+1 -1
pkgs/build-support/build-bazel-package/default.nix
··· 35 35 # required for the build as configured, rather than fetching all the dependencies 36 36 # which may not work in some situations (e.g. Java code which ends up relying on 37 37 # Debian-specific /usr/share/java paths, but doesn't in the configured build). 38 - , fetchConfigured ? false 38 + , fetchConfigured ? true 39 39 40 40 # Don’t add Bazel --copt and --linkopt from NIX_CFLAGS_COMPILE / 41 41 # NIX_LDFLAGS. This is necessary when using a custom toolchain which