1{
2 system ? builtins.currentSystem,
3 pkgs,
4 handleTestOn,
5 ...
6}:
7let
8 supportedSystems = [
9 "x86_64-linux"
10 "i686-linux"
11 "aarch64-linux"
12 ];
13
14in
15{
16 standard = handleTestOn supportedSystems ./standard.nix { inherit system pkgs; };
17 remote-databases = handleTestOn supportedSystems ./remote-databases.nix { inherit system pkgs; };
18}