nix-community.nixvim/flake/dev/tests.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
166 B
Nix
Raw Normal View History

{
self,
helpers,
...
}:
{
perSystem =
2025-01-19 12:55:15 +00:00
{ pkgs, ... }:
{
checks = pkgs.callPackages ../../tests {
2025-01-19 12:55:15 +00:00
inherit helpers self;
};
};
}