core/lib/default.nix

12 lines
282 B
Nix
Raw Normal View History

2025-08-05 14:55:13 +02:00
{lib}: let
l = builtins // lib;
utils = import ./utils {inherit l;};
core = import ./core {inherit l utils;};
compat = import ./compat {inherit l;};
2025-08-05 16:15:24 +02:00
blocks = import ./blocks;
2025-08-05 14:55:13 +02:00
in {
inherit (compat) filter select get;
inherit (core) build buildWith;
2025-08-05 16:15:24 +02:00
inherit blocks;
2025-08-05 14:55:13 +02:00
}