2024-10-18 09:44:59 +01:00
|
|
|
{
|
|
|
|
self,
|
2025-05-25 17:12:19 +01:00
|
|
|
inputs,
|
2024-10-18 09:44:59 +01:00
|
|
|
helpers,
|
|
|
|
...
|
|
|
|
}:
|
2024-05-05 19:39:35 +02:00
|
|
|
{
|
|
|
|
perSystem =
|
2025-01-19 12:55:15 +00:00
|
|
|
{ pkgs, ... }:
|
2024-05-05 19:39:35 +02:00
|
|
|
{
|
2025-02-22 16:02:13 +00:00
|
|
|
checks = pkgs.callPackages ../../tests {
|
2025-01-19 12:55:15 +00:00
|
|
|
inherit helpers self;
|
2024-10-18 09:44:59 +01:00
|
|
|
};
|
2024-01-06 17:57:24 +01:00
|
|
|
};
|
2025-05-25 17:12:19 +01:00
|
|
|
|
|
|
|
# Output a build matrix for CI
|
|
|
|
flake.githubActions = inputs.nix-github-actions.lib.mkGithubMatrix {
|
|
|
|
inherit (self) checks;
|
|
|
|
};
|
2023-12-06 13:09:26 +01:00
|
|
|
}
|