mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 00:25:42 +02:00
Move the previous `default.nix` to `main.nix` so that `default.nix` can be used for defining the set of all test derivations. `main.nix` is imported by `default.nix`, but is only responsible for the tests built from `tests/test-sources/`.
27 lines
305 B
Nix
27 lines
305 B
Nix
{
|
|
self,
|
|
lib,
|
|
helpers,
|
|
...
|
|
}:
|
|
{
|
|
perSystem =
|
|
{
|
|
pkgs,
|
|
pkgsUnfree,
|
|
system,
|
|
...
|
|
}:
|
|
{
|
|
checks = import ../tests {
|
|
inherit
|
|
helpers
|
|
lib
|
|
pkgs
|
|
pkgsUnfree
|
|
self
|
|
system
|
|
;
|
|
};
|
|
};
|
|
}
|