clan-core/lib/default.nix
Qubasa a48df5b993
All checks were successful
checks / checks (pull_request) Successful in 49s
checks / checks-impure (pull_request) Successful in 2m4s
Add package function-schema and module-schema. Add check for module jsonschema.
2024-05-01 23:16:17 +02:00

12 lines
230 B
Nix

{
lib,
clan-core,
nixpkgs,
...
}:
{
jsonschema = import ./jsonschema { inherit lib; };
modules = import ./description.nix { inherit clan-core; };
buildClan = import ./build-clan { inherit clan-core lib nixpkgs; };
}