···269269 </listitem>
270270 <listitem>
271271 <para>
272272+ The <literal>meta.mainProgram</literal> attribute of packages
273273+ in <literal>wineWowPackages</literal> now defaults to
274274+ <literal>"wine64"</literal>.
275275+ </para>
276276+ </listitem>
277277+ <listitem>
278278+ <para>
272279 (Neo)Vim can not be configured with
273280 <literal>configure.pathogen</literal> anymore to reduce
274281 maintainance burden. Use <literal>configure.packages</literal>
+2
nixos/doc/manual/release-notes/rl-2211.section.md
···104104 `python3.pkgs.influxgraph` packages, have been removed due to lack of upstream
105105 maintenance.
106106107107+- The `meta.mainProgram` attribute of packages in `wineWowPackages` now defaults to `"wine64"`.
108108+107109- (Neo)Vim can not be configured with `configure.pathogen` anymore to reduce maintainance burden.
108110Use `configure.packages` instead.
109111
+2-2
pkgs/applications/emulators/wine/base.nix
···66 patches,
77 vkd3dArches,
88 moltenvk,
99- buildScript ? null, configureFlags ? []
99+ buildScript ? null, configureFlags ? [], mainProgram ? "wine"
1010}:
11111212with import ./util.nix { inherit lib; };
···198198 description = if supportFlags.waylandSupport then "An Open Source implementation of the Windows API on top of OpenGL and Unix (with experimental Wayland support)" else "An Open Source implementation of the Windows API on top of X, OpenGL, and Unix";
199199 platforms = if supportFlags.waylandSupport then (lib.remove "x86_64-darwin" prevPlatforms) else prevPlatforms;
200200 maintainers = with lib.maintainers; [ avnik raskin bendlas jmc-figueira ];
201201- mainProgram = "wine";
201201+ inherit mainProgram;
202202 };
203203})