summary refs log tree commit diff
path: root/nixos/modules
diff options
context:
space:
mode:
authorAaron Andersen <aaron@fosslib.net>2021-12-08 22:21:25 -0500
committerGitHub <noreply@github.com>2021-12-08 22:21:25 -0500
commitffa3ebb1f709c726d34ebd3108705973bf159ed0 (patch)
treecae0ba024828be7b592a0cd17337d63ffa7b0ac3 /nixos/modules
parent4acf06935da2df65c7a0221d06006eba31756487 (diff)
parent1681c0b49ead6ea7a91acb34b4f75d60f35cc663 (diff)
downloadnixpkgs-ffa3ebb1f709c726d34ebd3108705973bf159ed0.tar
nixpkgs-ffa3ebb1f709c726d34ebd3108705973bf159ed0.tar.gz
nixpkgs-ffa3ebb1f709c726d34ebd3108705973bf159ed0.tar.bz2
nixpkgs-ffa3ebb1f709c726d34ebd3108705973bf159ed0.tar.lz
nixpkgs-ffa3ebb1f709c726d34ebd3108705973bf159ed0.tar.xz
nixpkgs-ffa3ebb1f709c726d34ebd3108705973bf159ed0.tar.zst
nixpkgs-ffa3ebb1f709c726d34ebd3108705973bf159ed0.zip
Merge pull request #149624 from dali99/fix_dokuwiki_php
nixos/dokuwiki: Use php74 for the phpfpm pool
Diffstat (limited to 'nixos/modules')
-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
   ];
 }