mirror of
https://gitlab.com/rensa-nix/core.git
synced 2025-12-11 22:00:09 +01:00
11 lines
282 B
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;
|
|
}
|