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