Skip to content

Commit

Permalink
Merge pull request #14 from andreabedini/patch-1
Browse files Browse the repository at this point in the history
Fix canPassStrict arguments order
  • Loading branch information
aakropotkin authored Dec 15, 2023
2 parents 5208879 + 0429cec commit af3b6e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/flake-utils.nix
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
locked = builtins.mapAttrs ( id: fetchInput ) lock.nodes;
stdArgs = locked // auto // { inherit self; };
fetchInput = { locked, ... }: builtins.fetchTree locked;
in lib.canPassStrict stdArgs flake.outputs;
in lib.canPassStrict flake.outputs stdArgs;
self = flake // ( flake.outputs ( inputs // extraArgs ) );
in self;

Expand Down

0 comments on commit af3b6e2

Please sign in to comment.