3986cc441b
have each function take pkgs as an argument, so a nixpkgs isn't created just for pkgs-lib and they support more systems
6 lines
141 B
Nix
6 lines
141 B
Nix
{ lib, deploy, devshell }:
|
|
{
|
|
tests = import ./tests { inherit lib deploy; };
|
|
shell = import ./shell { inherit lib devshell deploy; };
|
|
}
|
|
|