core/lib/default.nix

11 lines
282 B
Nix

{lib}: let
l = builtins // lib;
utils = import ./utils {inherit l;};
core = import ./core {inherit l utils;};
compat = import ./compat {inherit l;};
blocks = import ./blocks;
in {
inherit (compat) filter select get;
inherit (core) build buildWith;
inherit blocks;
}