Merge pull request #224494 from LeSuisse/roundcube-php81

nixos/roundcube: use PHP 8.1
This commit is contained in:
Ryan Lahfa 2023-04-15 22:12:31 +02:00 committed by GitHub
commit b914dffe7e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -7,7 +7,7 @@ let
fpm = config.services.phpfpm.pools.roundcube;
localDB = cfg.database.host == "localhost";
user = cfg.database.username;
phpWithPspell = pkgs.php80.withExtensions ({ enabled, all }: [ all.pspell ] ++ enabled);
phpWithPspell = pkgs.php81.withExtensions ({ enabled, all }: [ all.pspell ] ++ enabled);
in
{
options.services.roundcube = {