2021-04-19 05:40:53 +02:00
|
|
|
{ lib, nixpkgs, deploy, devshell }:
|
2021-04-10 19:59:10 +02:00
|
|
|
|
2021-04-19 05:40:53 +02:00
|
|
|
lib.genAttrs
|
|
|
|
lib.defaultSystems (system:
|
|
|
|
{
|
|
|
|
tests = import ./tests { inherit lib deploy nixpkgs pkgs system; };
|
|
|
|
shell = import ./shell { inherit lib devshell deploy nixpkgs system; };
|
2021-04-10 19:59:10 +02:00
|
|
|
}
|
|
|
|
)
|