2021-12-06 16:07:01 +00:00
|
|
|
{ system ? builtins.currentSystem
|
|
|
|
, config ? { }
|
|
|
|
, pkgs ? import ../../.. { inherit system config; }
|
2020-04-24 23:36:52 +00:00
|
|
|
}:
|
2021-10-04 12:37:57 +00:00
|
|
|
|
|
|
|
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;
|
|
|
|
};
|
|
|
|
})
|
2021-12-06 16:07:01 +00:00
|
|
|
{ }
|
2022-03-30 09:31:56 +00:00
|
|
|
[ 22 23 ]
|