mirror of
https://github.com/hercules-ci/flake-parts.git
synced 2025-03-05 00:16:52 +00:00
21 lines
400 B
Nix
21 lines
400 B
Nix
{ config, lib, flake-parts-lib, ... }:
|
|
let
|
|
inherit (lib)
|
|
mkOption
|
|
types
|
|
;
|
|
inherit (flake-parts-lib)
|
|
mkTransposedPerSystemModule
|
|
;
|
|
in
|
|
mkTransposedPerSystemModule {
|
|
name = "checks";
|
|
option = mkOption {
|
|
type = types.lazyAttrsOf types.package;
|
|
default = { };
|
|
description = ''
|
|
Derivations to be built by nix flake check.
|
|
'';
|
|
};
|
|
file = ./checks.nix;
|
|
}
|