Commit 79642eb5 authored by toastal's avatar toastal
Browse files

movim: with all; removed

nixfmt does not provide a good experience for this sort of shorthand
which becomes very difficult to read as a result.
parent e25d9e7a
Loading
Loading
Loading
Loading
+18 −24
Original line number Diff line number Diff line
@@ -58,30 +58,24 @@ php.buildComposerProject2 (finalAttrs: {
      extensions = (
        { all, enabled }:
        enabled
        ++ (with all; [
          curl
          dom
          gd
          imagick
          mbstring
          pdo
          simplexml
        ])
        ++ lib.optionals withPostgreSQL (
          with all;
          [
            pdo_pgsql
            pgsql
        ++ [
          all.curl
          all.dom
          all.gd
          all.imagick
          all.mbstring
          all.pdo
          all.simplexml
        ]
        )
        ++ lib.optionals withMySQL (
          with all;
          [
            mysqli
            mysqlnd
            pdo_mysql
        ++ lib.optionals withPostgreSQL [
          all.pdo_pgsql
          all.pgsql
        ]
        ++ lib.optionals withMySQL [
          all.mysqli
          all.mysqlnd
          all.pdo_mysql
        ]
        )
      );
    }
    // lib.optionalAttrs (phpCfg != null) {