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

21 lines
423 B
Nix
Raw Normal View History

args@{ lib, nixpkgs, deploy, devshell }:
2021-04-18 01:56:24 +00:00
lib.genAttrs lib.defaultSystems (system:
lib.makeExtensible (final:
let
2021-04-02 02:10:24 +00:00
pkgs = import nixpkgs { inherit system; };
callLibs = file: import file
(args // {
inherit pkgs system;
pkgs-lib = final;
});
in
with final;
{
inherit callLibs;
tests = callLibs ./tests;
shell = callLibs ./shell;
}
)
)