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

Add findInputByOutPath

This commit is contained in:
Yang, Bo 2023-05-06 19:48:04 -07:00
parent 86684881e1
commit dc2e9a29fd

11
lib.nix
View file

@ -168,6 +168,17 @@ let
type = flake-parts-lib.mkPerSystemType module;
};
findInputByOutPath = outPath:
lib.attrsets.concatMapAttrs
(inputName: input:
(
if lib.strings.hasPrefix input.outPath "${outPath}" then
input
else
findCurrentInput outPath input.inputs or { }
)
);
# Helper function for defining a per-system option that
# gets transposed by the usual flake system logic to a
# top-level flake attribute.