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:
parent
86684881e1
commit
dc2e9a29fd
1 changed files with 11 additions and 0 deletions
11
lib.nix
11
lib.nix
|
@ -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.
|
||||
|
|
Loading…
Add table
Reference in a new issue