1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

nixos/nextcloud: use PHP 7.3 instead of 7.1 by default

This commit is contained in:
Pascal Bach 2019-02-27 22:20:42 +01:00
parent 7f8620900a
commit 8f1b163b00

View file

@ -97,8 +97,8 @@ in {
phpPackages = mkOption {
type = types.attrs;
default = pkgs.php71Packages;
defaultText = "pkgs.php71Packages";
default = pkgs.php73Packages;
defaultText = "pkgs.php73Packages";
description = ''
Overridable attribute of the PHP packages set to use. If any caching
module is enabled, it will be taken from here. Therefore it should
@ -361,7 +361,7 @@ in {
services.phpfpm = {
phpOptions = phpOptionsExtensions;
phpPackage = pkgs.php71;
phpPackage = pkgs.php73;
pools.nextcloud = let
phpAdminValues = (toKeyValue
(foldr (a: b: a // b) {}