nixfiles/libs/accounting/default.nix
Sebastian Walz 9f7b02e1cd
Tohu vaBohu
2023-04-03 14:38:02 +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;
};
}