2021-04-18 22:40:53 -05:00
|
|
|
{ lib, nixpkgs, deploy, devshell }:
|
2021-04-10 10:59:10 -07:00
|
|
|
|
2021-04-18 22:40:53 -05:00
|
|
|
lib.genAttrs
|
2021-04-23 18:13:03 -07:00
|
|
|
lib.defaultSystems
|
|
|
|
(system:
|
|
|
|
let
|
|
|
|
pkgs = import nixpkgs { inherit system; };
|
|
|
|
in
|
2021-04-18 22:40:53 -05:00
|
|
|
{
|
2021-04-23 18:13:03 -07:00
|
|
|
tests = import ./tests { inherit lib deploy nixpkgs pkgs system; };
|
2021-04-18 22:40:53 -05:00
|
|
|
shell = import ./shell { inherit lib devshell deploy nixpkgs system; };
|
2021-04-10 10:59:10 -07:00
|
|
|
}
|
|
|
|
)
|