Skip to content

Commit

Permalink
Merge pull request #34705 from etu/php-upgrade
Browse files Browse the repository at this point in the history
php: 7.1.14 -> 7.2.2
  • Loading branch information
fpletz committed Feb 13, 2018
2 parents b1ba405 + 9bbe112 commit 08d3754
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
4 changes: 4 additions & 0 deletions nixos/doc/manual/release-notes/rl-1803.xml
Expand Up @@ -38,6 +38,10 @@ has the following highlights: </para>
</itemizedlist>
</para>
</listitem>

<listitem>
<para>PHP now defaults to PHP 7.2</para>
</listitem>
</itemizedlist>

</section>
Expand Down
10 changes: 7 additions & 3 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -6902,8 +6902,8 @@ with pkgs;

pachyderm = callPackage ../applications/networking/cluster/pachyderm { };

php = php71;
phpPackages = php71Packages;
php = php72;
phpPackages = php72Packages;

php56Packages = recurseIntoAttrs (callPackage ./php-packages.nix {
php = php56;
Expand All @@ -6928,13 +6928,17 @@ with pkgs;
php71
php72;

php-embed = php71-embed;
php-embed = php72-embed;

php71-embed = php71.override {
config.php.embed = true;
config.php.apxs2 = false;
};

php72-embed = php72.override {
config.php.embed = true;
config.php.apxs2 = false;
};

picoc = callPackage ../development/interpreters/picoc {};

Expand Down

0 comments on commit 08d3754

Please sign in to comment.