mirror of
https://gitlab.com/TECHNOFAB/nixlets.git
synced 2026-02-02 11:15:08 +01:00
16 lines
289 B
Nix
16 lines
289 B
Nix
{
|
|
inputs,
|
|
cell,
|
|
system,
|
|
...
|
|
}: let
|
|
inherit (inputs) pkgs ntlib nixlet-lib;
|
|
inherit (cell) nixlets;
|
|
in {
|
|
tests = ntlib.mkNixtest {
|
|
modules = ntlib.autodiscover {dir = "${inputs.self}/tests";};
|
|
args = {
|
|
inherit pkgs ntlib nixlet-lib nixlets system;
|
|
};
|
|
};
|
|
}
|