php: Upgrade from PHP 8.0 to 8.1 as default PHP

This commit is contained in:
Elis Hirwing 2022-05-24 19:24:49 +02:00
parent 0292979f81
commit 868e519238
No known key found for this signature in database
GPG key ID: D57EFA625C9A925F
3 changed files with 9 additions and 2 deletions

View file

@ -10,7 +10,7 @@
In addition to numerous new and upgraded packages, this release In addition to numerous new and upgraded packages, this release
has the following highlights: has the following highlights:
</para> </para>
<itemizedlist spacing="compact"> <itemizedlist>
<listitem> <listitem>
<para> <para>
During cross-compilation, tests are now executed if the test During cross-compilation, tests are now executed if the test
@ -31,6 +31,11 @@
<literal>stdenv.buildPlatform.canExecute stdenv.hostPlatform</literal>. <literal>stdenv.buildPlatform.canExecute stdenv.hostPlatform</literal>.
</para> </para>
</listitem> </listitem>
<listitem>
<para>
PHP now defaults to PHP 8.1, updated from 8.0.
</para>
</listitem>
</itemizedlist> </itemizedlist>
</section> </section>
<section xml:id="sec-release-22.11-new-services"> <section xml:id="sec-release-22.11-new-services">

View file

@ -17,6 +17,8 @@ In addition to numerous new and upgraded packages, this release has the followin
built for `stdenv.hostPlatform` (i.e. produced by `stdenv.cc`) by evaluating built for `stdenv.hostPlatform` (i.e. produced by `stdenv.cc`) by evaluating
`stdenv.buildPlatform.canExecute stdenv.hostPlatform`. `stdenv.buildPlatform.canExecute stdenv.hostPlatform`.
- PHP now defaults to PHP 8.1, updated from 8.0.
<!-- To avoid merge conflicts, consider adding your item at an arbitrary place in the list instead. --> <!-- To avoid merge conflicts, consider adding your item at an arbitrary place in the list instead. -->
## New Services {#sec-release-22.11-new-services} ## New Services {#sec-release-22.11-new-services}

View file

@ -14355,7 +14355,7 @@ with pkgs;
# PHP interpreters, packages and extensions. # PHP interpreters, packages and extensions.
# #
# Set default PHP interpreter, extensions and packages # Set default PHP interpreter, extensions and packages
php = php80; php = php81;
phpExtensions = php.extensions; phpExtensions = php.extensions;
phpPackages = php.packages; phpPackages = php.packages;