要调用使用set destructuring的Nix函数,您需要将完全所需的键传递给它,不多也不少:
nix-repl> ({ a }: a) { a = 4; b = 5; }
error: anonymous function at (string):1:2 called with unexpected argument ‘b’, at (string):1:1
例外情况是函数的参数列表末尾包含省略号:
nix-repl> ({ a, ... }: a) { a = 4; b = 5; }
4
但是,nixpkgs中的大多数软件包都包含一个default.nix
文件,其中包含使用此省略号定义 的函数。然而,不知何故,当你使用callPackage
时,它设法调用这些函数并仅传递它们所需的参数。这是如何实现的?
答案 0 :(得分:5)
有一个反射primop,可以解构函数参数:
nix-repl> __functionArgs ( { x ? 1, y }: x )
{ x = true; y = false; }
callPackage
然后迭代这些属性名称,获取所需的包并构造包的attrset,稍后将其提供给被调用的函数。
这是一个简单的例子:
nix-repl> callWithExtraArgs = f: args:
let
args' = __intersectAttrs (__functionArgs f) args;
in
f args'
nix-repl> callWithExtraArgs ({ x }: x + 1) { x = 4; y = 7; }
5