summary refs log blame commit diff
path: root/nixos/tests/nextcloud/default.nix
blob: b7b1c5c66002edacdf6e37119172eadf9cbfb2c9 (plain) (tree)
1
2
3
4


                                                   
  














                                                                                                 
   
           
{ system ? builtins.currentSystem
, config ? { }
, pkgs ? import ../../.. { inherit system config; }
}:

with pkgs.lib;

foldl
  (matrix: ver: matrix // {
    "basic${toString ver}" = import ./basic.nix { inherit system pkgs; nextcloudVersion = ver; };
    "with-postgresql-and-redis${toString ver}" = import ./with-postgresql-and-redis.nix {
      inherit system pkgs;
      nextcloudVersion = ver;
    };
    "with-mysql-and-memcached${toString ver}" = import ./with-mysql-and-memcached.nix {
      inherit system pkgs;
      nextcloudVersion = ver;
    };
  })
{ }
  [ 22 23 ]