feat: add autodiscovery for cell blocks

This commit is contained in:
technofab 2026-01-04 20:49:21 +01:00
parent e08c48b5db
commit 50d96d43ce
Signed by: technofab
SSH key fingerprint: SHA256:bV4h88OqS/AxjbPn66uUdvK9JsgIW4tv3vwJQ8tpMqQ
10 changed files with 251 additions and 45 deletions

View file

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