summary refs log tree commit diff
path: root/nixos/modules/services/web-apps/dokuwiki.nix
diff options
context:
space:
mode:
authorDaniel Olsen <daniel.olsen99@gmail.com>2021-12-08 13:32:33 +0100
committerDaniel Olsen <daniel.olsen99@gmail.com>2021-12-08 20:22:12 +0100
commit1681c0b49ead6ea7a91acb34b4f75d60f35cc663 (patch)
treec4a7d7e2a841ec727e15c76d2e031029dabe0a0c /nixos/modules/services/web-apps/dokuwiki.nix
parentf46298f7dbde9d1dd3ae3f214eba2d1fd442831c (diff)
downloadnixpkgs-1681c0b49ead6ea7a91acb34b4f75d60f35cc663.tar
nixpkgs-1681c0b49ead6ea7a91acb34b4f75d60f35cc663.tar.gz
nixpkgs-1681c0b49ead6ea7a91acb34b4f75d60f35cc663.tar.bz2
nixpkgs-1681c0b49ead6ea7a91acb34b4f75d60f35cc663.tar.lz
nixpkgs-1681c0b49ead6ea7a91acb34b4f75d60f35cc663.tar.xz
nixpkgs-1681c0b49ead6ea7a91acb34b4f75d60f35cc663.tar.zst
nixpkgs-1681c0b49ead6ea7a91acb34b4f75d60f35cc663.zip
nixos/dokuwiki: Use php74 for the phpfpm pool
php8 does not work and is not supported
Diffstat (limited to 'nixos/modules/services/web-apps/dokuwiki.nix')
-rw-r--r--nixos/modules/services/web-apps/dokuwiki.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/nixos/modules/services/web-apps/dokuwiki.nix b/nixos/modules/services/web-apps/dokuwiki.nix
index fc0e23729b3..9b9ae931f9a 100644
--- a/nixos/modules/services/web-apps/dokuwiki.nix
+++ b/nixos/modules/services/web-apps/dokuwiki.nix
@@ -308,6 +308,9 @@ in
         inherit user;
         group = webserver.group;
 
+        # Not yet compatible with php 8 https://www.dokuwiki.org/requirements
+        # https://github.com/splitbrain/dokuwiki/issues/3545
+        phpPackage = pkgs.php74;
         phpEnv = {
           DOKUWIKI_LOCAL_CONFIG = "${dokuwikiLocalConfig hostName cfg}";
           DOKUWIKI_PLUGINS_LOCAL_CONFIG = "${dokuwikiPluginsLocalConfig hostName cfg}";
@@ -446,5 +449,6 @@ in
   meta.maintainers = with maintainers; [
     _1000101
     onny
+    dandellion
   ];
 }