mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-11-09 16:18:34 +01:00
38 lines
555 B
Nix
38 lines
555 B
Nix
{
|
|
runTest,
|
|
package,
|
|
}:
|
|
|
|
{
|
|
base = runTest {
|
|
imports = [ ./base.nix ];
|
|
_module.args = {
|
|
inherit package;
|
|
};
|
|
};
|
|
kafka = runTest {
|
|
imports = [ ./kafka.nix ];
|
|
_module.args = {
|
|
inherit package;
|
|
};
|
|
};
|
|
keeper = runTest {
|
|
imports = [ ./keeper.nix ];
|
|
_module.args = {
|
|
inherit package;
|
|
};
|
|
};
|
|
s3 = runTest {
|
|
imports = [ ./s3.nix ];
|
|
_module.args = {
|
|
inherit package;
|
|
};
|
|
};
|
|
ui = runTest {
|
|
imports = [ ./ui.nix ];
|
|
_module.args = {
|
|
inherit package;
|
|
};
|
|
};
|
|
}
|