pub-solar-os/lib/pkgs-lib/default.nix

10 lines
248 B
Nix
Raw Normal View History

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