2021-12-02 17:24:50 +00:00
|
|
|
{ system ? builtins.currentSystem
|
|
|
|
, config ? { }
|
|
|
|
, pkgs ? import ../../.. { inherit system config; }
|
2018-11-11 08:41:11 +00:00
|
|
|
}:
|
2021-10-01 16:03:32 +01: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-02 17:24:50 +00:00
|
|
|
{ }
|
2022-05-21 17:34:28 +01:00
|
|
|
[ 23 24 ]
|