1
0
Fork 0
mirror of https://github.com/hercules-ci/flake-parts.git synced 2024-12-14 11:47:31 +00:00
flake-parts/modules/checks.nix
2021-11-22 22:01:38 +01:00

53 lines
1.1 KiB
Nix

{ config, lib, flake-modules-core-lib, ... }:
let
inherit (lib)
filterAttrs
mapAttrs
mkOption
optionalAttrs
types
;
inherit (flake-modules-core-lib)
mkSubmoduleOptions
;
in
{
options = {
flake = mkSubmoduleOptions {
checks = mkOption {
type = types.lazyAttrsOf (types.lazyAttrsOf types.package);
default = { };
description = ''
Derivations to be built by nix flake check.
'';
};
};
};
config = {
flake.checks =
mapAttrs
(k: v: v.checks)
(filterAttrs
(k: v: v.checks != null)
config.allSystems
);
perInput = system: flake:
optionalAttrs (flake?checks.${system}) {
checks = flake.checks.${system};
};
perSystem = system: { config, ... }: {
_file = ./checks.nix;
options = {
checks = mkOption {
type = types.lazyAttrsOf types.package;
default = { };
description = ''
Derivations to be built by nix flake check.
'';
};
};
};
};
}