mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-11 17:54:30 +02:00
18 lines
248 B
Nix
18 lines
248 B
Nix
{
|
|
self,
|
|
helpers,
|
|
...
|
|
}:
|
|
{
|
|
perSystem =
|
|
{ pkgs, ... }:
|
|
let
|
|
tests = pkgs.callPackage ../../tests {
|
|
inherit helpers self;
|
|
};
|
|
in
|
|
{
|
|
checks = tests.flakeCheck;
|
|
ci.buildbot = tests.buildbot;
|
|
};
|
|
}
|