2023-12-06 13:09:26 +01:00
|
|
|
{
|
|
|
|
perSystem =
|
|
|
|
{
|
2024-06-05 21:59:34 +02:00
|
|
|
pkgsUnfree,
|
2023-12-06 13:09:26 +01:00
|
|
|
config,
|
2024-02-03 19:04:09 +01:00
|
|
|
rawModules,
|
2024-02-07 16:50:08 +01:00
|
|
|
helpers,
|
2023-12-06 13:09:26 +01:00
|
|
|
...
|
|
|
|
}:
|
2024-01-12 23:22:03 +01:00
|
|
|
{
|
2024-06-05 21:59:34 +02:00
|
|
|
packages = import ../docs {
|
|
|
|
inherit rawModules helpers;
|
|
|
|
# Building the docs evaluates each plugin's default package, some of which are unfree
|
|
|
|
pkgs = pkgsUnfree;
|
|
|
|
};
|
2024-01-06 15:55:29 +01:00
|
|
|
|
|
|
|
# Test that all packages build fine when running `nix flake check`.
|
|
|
|
checks = config.packages;
|
2023-12-06 13:09:26 +01:00
|
|
|
};
|
|
|
|
}
|