nix-community.nixvim/flake/tests.nix
2025-01-19 12:56:24 +01:00

22 lines
249 B
Nix

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