nixpkgs/nixos/tests/nextcloud/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
856 B
Nix
Raw Normal View History

2021-12-02 17:24:50 +00:00
{ 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;
};
"with-declarative-redis${toString ver}" = import ./with-declarative-redis.nix {
inherit system pkgs;
nextcloudVersion = ver;
};
"with-secrets${toString ver}" = import ./with-secrets.nix {
inherit system pkgs;
nextcloudVersion = ver;
};
})
2021-12-02 17:24:50 +00:00
{ }
[ 23 24 ]