1
0
Fork 0
mirror of https://github.com/hercules-ci/flake-parts.git synced 2025-04-09 10:34:00 +00:00

Fix error

This commit is contained in:
Yang, Bo 2023-05-07 15:25:06 -07:00
parent 433615ba45
commit 8caa44d021

View file

@ -93,7 +93,7 @@ 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.inputsByOutPath' = outPath: mapAttrs (k: rootConfig.perInput system) (flake-parts-lib.findInputsByOutPath outPath self.inputs);
_module.args.self' = rootConfig.perInput system self;