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