2024-12-21 13:40:16 +00:00
|
|
|
{
|
|
|
|
inputs,
|
|
|
|
helpers,
|
|
|
|
...
|
|
|
|
}:
|
2023-12-06 13:09:26 +01:00
|
|
|
{
|
2024-05-05 19:39:35 +02:00
|
|
|
perSystem =
|
2024-07-19 20:14:20 +02:00
|
|
|
{
|
|
|
|
config,
|
|
|
|
inputs',
|
2024-09-12 12:55:33 +01:00
|
|
|
system,
|
2024-07-19 20:14:20 +02:00
|
|
|
...
|
|
|
|
}:
|
2024-05-05 19:39:35 +02:00
|
|
|
{
|
2024-06-05 21:59:34 +02:00
|
|
|
packages = import ../docs {
|
2024-12-21 13:40:16 +00:00
|
|
|
inherit helpers;
|
2024-09-12 12:55:33 +01:00
|
|
|
inherit system;
|
|
|
|
inherit (inputs) nixpkgs;
|
2024-07-19 20:14:20 +02:00
|
|
|
inherit (inputs') nuschtosSearch;
|
2024-06-05 21:59:34 +02:00
|
|
|
};
|
2024-01-06 15:55:29 +01:00
|
|
|
|
2024-05-05 19:39:35 +02:00
|
|
|
# Test that all packages build fine when running `nix flake check`.
|
|
|
|
checks = config.packages;
|
|
|
|
};
|
2023-12-06 13:09:26 +01:00
|
|
|
}
|