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

partitions: allow merging multiple partitions per attr

This commit is contained in:
Matt Sturgeon 2025-02-22 22:27:36 +00:00
parent 32ea77a067
commit 5a9ba7d385
No known key found for this signature in database
GPG key ID: 4F91844CED1A8299

View file

@ -95,7 +95,7 @@ in
{
options = {
partitionedAttrs = mkOption {
type = types.attrsOf types.str;
type = types.attrsOf (types.coercedTo types.str lib.singleton (types.nonEmptyListOf types.str));
default = { };
description = ''
A set of flake output attributes that are taken from a partition instead of the default top level flake-parts evaluation.
@ -147,7 +147,12 @@ in
_module.args.partitionStack = [ ];
flake = optionalAttrs (partitionStack == [ ]) (
mapAttrs
(attrName: partition: lib.mkForce (config.partitions.${partition}.module.flake.${attrName}))
(
attrName: partitions:
lib.mkMerge (
map (partition: lib.mkForce config.partitions.${partition}.module.flake.${attrName}) partitions
)
)
config.partitionedAttrs
);
};