mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-20 16:15:43 +02:00
21 lines
449 B
Nix
21 lines
449 B
Nix
{
|
|
self,
|
|
helpers,
|
|
...
|
|
}:
|
|
{
|
|
perSystem =
|
|
{ pkgs, ... }:
|
|
{
|
|
# TODO: consider whether all these tests are needed in the `checks` output
|
|
checks = pkgs.callPackages ../../tests {
|
|
inherit helpers self;
|
|
};
|
|
|
|
# TODO: consider whether all these tests are needed to be built by buildbot
|
|
ci.buildbot = pkgs.callPackages ../../tests {
|
|
inherit helpers self;
|
|
allSystems = false;
|
|
};
|
|
};
|
|
}
|