nix-community.nixvim/flake/tests.nix

23 lines
249 B
Nix
Raw Normal View History

{
self,
helpers,
...
}:
2024-05-05 19:39:35 +02:00
{
perSystem =
{
pkgs,
pkgsUnfree,
2024-05-05 19:39:35 +02:00
...
}:
{
2024-12-14 22:41:16 +00:00
checks = pkgs.callPackages ../tests {
inherit
helpers
pkgsUnfree
self
;
};
};
}