nixos/dokuwiki: use php 8.4

PHP 8.1 needs to be removed since it'll be EOLed by the end of the year.
This commit is contained in:
Maximilian Bosch
2025-10-03 22:57:06 +02:00
parent 5d8279161e
commit 3d04c5aaa8

View File

@@ -56,7 +56,7 @@ let
pkgs.writeTextFile {
inherit name;
text = "<?php\n${text}";
checkPhase = "${pkgs.php81}/bin/php --syntax-check $target";
checkPhase = "${pkgs.php84}/bin/php --syntax-check $target";
};
mkPhpValue =
@@ -368,8 +368,7 @@ let
};
phpPackage = mkPackageOption pkgs "php" {
default = "php81";
example = "php82";
default = "php84";
};
phpOptions = mkOption {