1
0
Fork 0
mirror of https://github.com/hercules-ci/flake-parts.git synced 2025-03-31 04:04:55 +00:00

feat: don't output empty systems

This commit is contained in:
DavHau 2023-01-31 18:26:04 +07:00
parent 7c7a8bce3d
commit a7b625e84e

View file

@ -7,10 +7,9 @@ let
mkOption
types
;
inherit (flake-parts-lib)
mkSubmoduleOptions
mkPerSystemOption
;
removeEmptySystems = attrName:
lib.filterAttrs (system: v: v.${attrName} != {});
transpositionModule = {
options = {
@ -57,7 +56,7 @@ in
(attrName: attrConfig:
mapAttrs
(system: v: v.${attrName})
config.allSystems
(removeEmptySystems attrName config.allSystems)
)
config.transposition;