Loading nixos/modules/services/web-apps/movim.nix +6 −2 Original line number Diff line number Diff line Loading @@ -53,10 +53,14 @@ let p = cfg.package.override ( { inherit phpCfg; withPgsql = cfg.database.type == "pgsql"; withMysql = cfg.database.type == "mysql"; inherit (cfg) minifyStaticFiles; } // lib.optionalAttrs (cfg.database.type == "postgresql") { withPostgreSQL = true; } // lib.optionalAttrs (cfg.database.type == "mysql") { withMySQL = true; } // lib.optionalAttrs (lib.isAttrs cfg.minifyStaticFiles) ( with cfg.minifyStaticFiles; { Loading pkgs/by-name/mo/movim/package.nix +4 −4 Original line number Diff line number Diff line Loading @@ -5,8 +5,8 @@ dash, php, phpCfg ? null, withPgsql ? true, # “strongly recommended” according to docs withMysql ? false, withPostgreSQL ? true, # “strongly recommended” according to docs withMySQL ? false, minifyStaticFiles ? false, # default files are often not minified esbuild, lightningcss, Loading Loading @@ -67,14 +67,14 @@ php.buildComposerProject2 (finalAttrs: { pdo simplexml ]) ++ lib.optionals withPgsql ( ++ lib.optionals withPostgreSQL ( with all; [ pdo_pgsql pgsql ] ) ++ lib.optionals withMysql ( ++ lib.optionals withMySQL ( with all; [ mysqli Loading Loading
nixos/modules/services/web-apps/movim.nix +6 −2 Original line number Diff line number Diff line Loading @@ -53,10 +53,14 @@ let p = cfg.package.override ( { inherit phpCfg; withPgsql = cfg.database.type == "pgsql"; withMysql = cfg.database.type == "mysql"; inherit (cfg) minifyStaticFiles; } // lib.optionalAttrs (cfg.database.type == "postgresql") { withPostgreSQL = true; } // lib.optionalAttrs (cfg.database.type == "mysql") { withMySQL = true; } // lib.optionalAttrs (lib.isAttrs cfg.minifyStaticFiles) ( with cfg.minifyStaticFiles; { Loading
pkgs/by-name/mo/movim/package.nix +4 −4 Original line number Diff line number Diff line Loading @@ -5,8 +5,8 @@ dash, php, phpCfg ? null, withPgsql ? true, # “strongly recommended” according to docs withMysql ? false, withPostgreSQL ? true, # “strongly recommended” according to docs withMySQL ? false, minifyStaticFiles ? false, # default files are often not minified esbuild, lightningcss, Loading Loading @@ -67,14 +67,14 @@ php.buildComposerProject2 (finalAttrs: { pdo simplexml ]) ++ lib.optionals withPgsql ( ++ lib.optionals withPostgreSQL ( with all; [ pdo_pgsql pgsql ] ) ++ lib.optionals withMysql ( ++ lib.optionals withMySQL ( with all; [ mysqli Loading