···5757 new versions will release.
5858 </para>
5959 </listitem>
6060+ <listitem>
6161+ <para>
6262+ The <literal>wafHook</literal> hook now honors
6363+ <literal>NIX_BUILD_CORES</literal> when
6464+ <literal>enableParallelBuilding</literal> is not set
6565+ explicitly. Packages can restore the old behaviour by setting
6666+ <literal>enableParallelBuilding=false</literal>.
6767+ </para>
6868+ </listitem>
6069 </itemizedlist>
6170 </section>
6271 <section xml:id="sec-release-22.05-notable-changes">
+4-2
nixos/doc/manual/release-notes/rl-2205.section.md
···10101111## Backward Incompatibilities {#sec-release-22.05-incompatibilities}
12121313-* `pkgs.ghc` now refers to `pkgs.targetPackages.haskellPackages.ghc`.
1313+- `pkgs.ghc` now refers to `pkgs.targetPackages.haskellPackages.ghc`.
1414 This *only* makes a difference if you are cross-compiling and will
1515 ensure that `pkgs.ghc` always runs on the host platform and compiles
1616 for the target platform (similar to `pkgs.gcc` for example).
···2222 instead to ensure cross compilation keeps working (or switch to
2323 `haskellPackages.callPackage`).
24242525-* `pkgs.emacsPackages.orgPackages` is removed because org elpa is deprecated.
2525+- `pkgs.emacsPackages.orgPackages` is removed because org elpa is deprecated.
2626 The packages in the top level of `pkgs.emacsPackages`, such as org and
2727 org-contrib, refer to the ones in `pkgs.emacsPackages.elpaPackages` and
2828 `pkgs.emacsPackages.nongnuPackages` where the new versions will release.
2929+3030+- The `wafHook` hook now honors `NIX_BUILD_CORES` when `enableParallelBuilding` is not set explicitly. Packages can restore the old behaviour by setting `enableParallelBuilding=false`.
29313032## Other Notable Changes {#sec-release-22.05-notable-changes}
···1818 /dev/hwbinder = hidl
1919 '';
20202121-in {
2121+in
2222+{
22232324 options.virtualisation.waydroid = {
2425 enable = mkEnableOption "Waydroid";
···3536 (isEnabled "ANDROID_BINDERFS")
3637 (isEnabled "ASHMEM")
3738 ];
3939+4040+ /* NOTE: we always enable this flag even if CONFIG_PSI_DEFAULT_DISABLED is not on
4141+ as reading the kernel config is not always possible and on kernels where it's
4242+ already on it will be no-op
4343+ */
4444+ boot.kernelParams = [ "psi=1" ];
38453946 environment.etc."gbinder.d/waydroid.conf".source = waydroidGbinderConf;
4047