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

Add inputsByOutPath and inputsByOutPath'

This commit is contained in:
Yang, Bo 2023-05-07 15:11:25 -07:00
parent c0dbe755a4
commit 47c30bc195
2 changed files with 5 additions and 2 deletions

View file

@ -85,7 +85,7 @@ let
arguments as `inputs` like above.
'';
flake-parts-lib = {
flake-parts-lib = ref {
evalFlakeModule =
args@
{ inputs ? self.inputs
@ -116,10 +116,11 @@ let
(module:
lib.evalModules {
specialArgs = {
specialArgs = ref {
inherit self flake-parts-lib;
inputs = args.inputs or /* legacy, warned above */ self.inputs;
} // specialArgs;
inputsByOutPath = outPath: findInputsByOutPath outPath inputs;
modules = [ ./all-modules.nix module ];
}
);

View file

@ -93,6 +93,8 @@ in
_file = ./perSystem.nix;
config = {
_module.args.inputs' = mapAttrs (k: rootConfig.perInput system) self.inputs;
_module.args.inputsByOutPath' = outPath: mapAttrs (k: rootConfig.perInput system) (findInputsByOutPath outPath self.inputs);
_module.args.self' = rootConfig.perInput system self;
# Custom error messages