Sebastian Walz 860d31cee1
Tohu vaBohu
2023-04-21 00:22:52 +02:00

15 lines
382 B
Nix

{ core, ... } @ libs:
let
inherit(core) check library target;
lib = library.load ./lib libs;
tests = check.load ./tests libs lib;
in
{
inherit lib tests;
checks
= check tests
{
targetSystem = target.System.all.x86_64-linux;
};
}