We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0cc3670 commit 14c0106Copy full SHA for 14c0106
lib/default.nix
@@ -78,6 +78,6 @@ with haskellLib;
78
#
79
weakCallPackage = scope: f: args:
80
let f' = if lib.isFunction f then f else import f;
81
- args' = scope // args;
82
- in f' (builtins.intersectAttrs (builtins.functionArgs f') args');
+ args' = (builtins.intersectAttrs (builtins.functionArgs f') scope) // args;
+ in f' args';
83
}
0 commit comments