nix-community.nixvim/flake/tests.nix

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

23 lines
249 B
Nix
Raw Normal View History

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