nix-community.nixvim/flake-modules/tests.nix
2024-12-15 17:44:56 +00:00

22 lines
249 B
Nix

{
self,
helpers,
...
}:
{
perSystem =
{
pkgs,
pkgsUnfree,
...
}:
{
checks = pkgs.callPackages ../tests {
inherit
helpers
pkgsUnfree
self
;
};
};
}