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