620eecebfb
GitOrigin-RevId: 2deb07f3ac4eeb5de1c12c4ba2911a2eb1f6ed61
21 lines
582 B
Nix
21 lines
582 B
Nix
{ 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;
|
|
};
|
|
})
|
|
{}
|
|
[ 21 22 ]
|