about summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorFranz Pletz <fpletz@fnordicwalking.de>2023-08-19 13:41:22 +0200
committerGitHub <noreply@github.com>2023-08-19 13:41:22 +0200
commit4fe4a74fe55fcb512902bbdee59a7fdcc9f7c754 (patch)
treebfee8d8db98240ed11da8eaa1629321e560e5668 /nixos
parent4ed77bebec5c443e806ad05c16de88ad07063647 (diff)
parent66ee520289a94519350a741924a52b41ae8237df (diff)
downloadnixlib-4fe4a74fe55fcb512902bbdee59a7fdcc9f7c754.tar
nixlib-4fe4a74fe55fcb512902bbdee59a7fdcc9f7c754.tar.gz
nixlib-4fe4a74fe55fcb512902bbdee59a7fdcc9f7c754.tar.bz2
nixlib-4fe4a74fe55fcb512902bbdee59a7fdcc9f7c754.tar.lz
nixlib-4fe4a74fe55fcb512902bbdee59a7fdcc9f7c754.tar.xz
nixlib-4fe4a74fe55fcb512902bbdee59a7fdcc9f7c754.tar.zst
nixlib-4fe4a74fe55fcb512902bbdee59a7fdcc9f7c754.zip
Merge pull request #246713 from n0emis/grocy-4.0.0
grocy: 3.3.0 -> 4.0.0
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/services/web-apps/grocy.nix8
1 files changed, 3 insertions, 5 deletions
diff --git a/nixos/modules/services/web-apps/grocy.nix b/nixos/modules/services/web-apps/grocy.nix
index 688367cafaf5..b0d3c44cea81 100644
--- a/nixos/modules/services/web-apps/grocy.nix
+++ b/nixos/modules/services/web-apps/grocy.nix
@@ -115,10 +115,8 @@ in {
       user = "grocy";
       group = "nginx";
 
-      # PHP 8.0 is the only version which is supported/tested by upstream:
-      # https://github.com/grocy/grocy/blob/v3.3.0/README.md#how-to-install
-      # Compatibility with PHP 8.1 is available on their development branch:
-      # https://github.com/grocy/grocy/commit/38a4ad8ec480c29a1bff057b3482fd103b036848
+      # PHP 8.1 is the only version which is supported/tested by upstream:
+      # https://github.com/grocy/grocy/blob/v4.0.0/README.md#platform-support
       phpPackage = pkgs.php81;
 
       inherit (cfg.phpfpm) settings;
@@ -168,7 +166,7 @@ in {
   };
 
   meta = {
-    maintainers = with maintainers; [ ma27 ];
+    maintainers = with maintainers; [ n0emis ];
     doc = ./grocy.md;
   };
 }