mirror of
https://gitlab.com/TECHNOFAB/nixible.git
synced 2026-02-02 11:25:08 +01:00
11 lines
214 B
Nix
11 lines
214 B
Nix
|
|
{inputs, ...}: let
|
||
|
|
inherit (inputs) pkgs ntlib nblib;
|
||
|
|
in {
|
||
|
|
tests = ntlib.mkNixtest {
|
||
|
|
modules = ntlib.autodiscover {dir = "${inputs.self}/tests";};
|
||
|
|
args = {
|
||
|
|
inherit pkgs ntlib nblib;
|
||
|
|
};
|
||
|
|
};
|
||
|
|
}
|