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:
parent
c0dbe755a4
commit
47c30bc195
2 changed files with 5 additions and 2 deletions
5
lib.nix
5
lib.nix
|
@ -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 ];
|
||||
}
|
||||
);
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue