mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-20 16:15:43 +02:00
22 lines
249 B
Nix
22 lines
249 B
Nix
{
|
|
self,
|
|
helpers,
|
|
...
|
|
}:
|
|
{
|
|
perSystem =
|
|
{
|
|
pkgs,
|
|
pkgsUnfree,
|
|
...
|
|
}:
|
|
{
|
|
checks = pkgs.callPackages ../tests {
|
|
inherit
|
|
helpers
|
|
pkgsUnfree
|
|
self
|
|
;
|
|
};
|
|
};
|
|
}
|