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:
@@ -56,7 +56,7 @@ let
|
|||||||
pkgs.writeTextFile {
|
pkgs.writeTextFile {
|
||||||
inherit name;
|
inherit name;
|
||||||
text = "<?php\n${text}";
|
text = "<?php\n${text}";
|
||||||
checkPhase = "${pkgs.php81}/bin/php --syntax-check $target";
|
checkPhase = "${pkgs.php84}/bin/php --syntax-check $target";
|
||||||
};
|
};
|
||||||
|
|
||||||
mkPhpValue =
|
mkPhpValue =
|
||||||
@@ -368,8 +368,7 @@ let
|
|||||||
};
|
};
|
||||||
|
|
||||||
phpPackage = mkPackageOption pkgs "php" {
|
phpPackage = mkPackageOption pkgs "php" {
|
||||||
default = "php81";
|
default = "php84";
|
||||||
example = "php82";
|
|
||||||
};
|
};
|
||||||
|
|
||||||
phpOptions = mkOption {
|
phpOptions = mkOption {
|
||||||
|
|||||||
Reference in New Issue
Block a user