···269 </listitem>
270 <listitem>
271 <para>
0000000272 (Neo)Vim can not be configured with
273 <literal>configure.pathogen</literal> anymore to reduce
274 maintainance burden. Use <literal>configure.packages</literal>
···269 </listitem>
270 <listitem>
271 <para>
272+ The <literal>meta.mainProgram</literal> attribute of packages
273+ in <literal>wineWowPackages</literal> now defaults to
274+ <literal>"wine64"</literal>.
275+ </para>
276+ </listitem>
277+ <listitem>
278+ <para>
279 (Neo)Vim can not be configured with
280 <literal>configure.pathogen</literal> anymore to reduce
281 maintainance burden. Use <literal>configure.packages</literal>
+2
nixos/doc/manual/release-notes/rl-2211.section.md
···104 `python3.pkgs.influxgraph` packages, have been removed due to lack of upstream
105 maintenance.
10600107- (Neo)Vim can not be configured with `configure.pathogen` anymore to reduce maintainance burden.
108Use `configure.packages` instead.
109
···104 `python3.pkgs.influxgraph` packages, have been removed due to lack of upstream
105 maintenance.
106107+- The `meta.mainProgram` attribute of packages in `wineWowPackages` now defaults to `"wine64"`.
108+109- (Neo)Vim can not be configured with `configure.pathogen` anymore to reduce maintainance burden.
110Use `configure.packages` instead.
111
+2-2
pkgs/applications/emulators/wine/base.nix
···6 patches,
7 vkd3dArches,
8 moltenvk,
9- buildScript ? null, configureFlags ? []
10}:
1112with import ./util.nix { inherit lib; };
···198 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";
199 platforms = if supportFlags.waylandSupport then (lib.remove "x86_64-darwin" prevPlatforms) else prevPlatforms;
200 maintainers = with lib.maintainers; [ avnik raskin bendlas jmc-figueira ];
201- mainProgram = "wine";
202 };
203})
···6 patches,
7 vkd3dArches,
8 moltenvk,
9+ buildScript ? null, configureFlags ? [], mainProgram ? "wine"
10}:
1112with import ./util.nix { inherit lib; };
···198 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";
199 platforms = if supportFlags.waylandSupport then (lib.remove "x86_64-darwin" prevPlatforms) else prevPlatforms;
200 maintainers = with lib.maintainers; [ avnik raskin bendlas jmc-figueira ];
201+ inherit mainProgram;
202 };
203})