nixfiles/libs/config/default.nix
Sebastian Walz 9f7b02e1cd
Tohu vaBohu
2023-04-03 14:38:02 +02:00

19 lines
473 B
Nix

{ core, nixpkgs, ... } @ libs:
let
inherit(core) check library string target;
lib = library.load ./lib libs;
tests = check.load ./tests libs lib;
in
{
inherit lib tests;
stdenv
= target.System.mapStdenv
(
system:
nixpkgs.legacyPackages.${string system}.stdenv
);
checks = check tests {};
}