mirror of
https://gitlab.com/TECHNOFAB/soonix.git
synced 2025-12-11 22:00:05 +01:00
11 lines
216 B
Nix
11 lines
216 B
Nix
|
|
{inputs, ...}: let
|
||
|
|
inherit (inputs) pkgs ntlib soonix;
|
||
|
|
in {
|
||
|
|
tests = ntlib.mkNixtest {
|
||
|
|
modules = ntlib.autodiscover {dir = "${inputs.self}/tests";};
|
||
|
|
args = {
|
||
|
|
inherit ntlib soonix pkgs;
|
||
|
|
};
|
||
|
|
};
|
||
|
|
}
|