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