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

22 lines
475 B
Nix
Raw Permalink Normal View History

2023-05-29 17:52:03 +00:00
{ lib, flake-parts-lib, ... }:
2021-10-27 09:05:52 +00:00
let
inherit (lib)
mkOption
types
;
2022-05-25 14:36:33 +00:00
inherit (flake-parts-lib)
mkTransposedPerSystemModule
2021-11-21 14:47:11 +00:00
;
2021-10-27 09:05:52 +00:00
in
mkTransposedPerSystemModule {
name = "checks";
option = mkOption {
type = types.lazyAttrsOf types.package;
default = { };
description = ''
2022-11-11 05:40:37 +00:00
Derivations to be built by [`nix flake check`](https://nixos.org/manual/nix/stable/command-ref/new-cli/nix3-flake-check.html).
'';
2021-10-27 09:05:52 +00:00
};
file = ./checks.nix;
2021-10-27 09:05:52 +00:00
}